Download even empty categories in TT-RSS.

This commit is contained in:
Martin Rotter 2015-12-22 11:55:31 +01:00
parent 0f5f224db8
commit d50038f6ed
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ TtRssGetFeedsCategoriesResponse TtRssNetworkFactory::getFeedsCategories() {
QtJson::JsonObject json;
json["op"] = "getFeedTree";
json["sid"] = m_sessionId;
json["include_empty"] = false;
json["include_empty"] = true;
QByteArray result_raw;
NetworkResult network_reply = NetworkFactory::uploadData(m_url, DOWNLOAD_TIMEOUT, QtJson::serialize(json), CONTENT_TYPE, result_raw,