Skip to content

Commit 4beb719

Browse files
committed
Fix Inoreader bug when Sync-In failed when Inoreader account does not contain any categories or feeds.
1 parent 13c8ecf commit 4beb719

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/librssguard/services/inoreader/inoreaderserviceroot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ QString InoreaderServiceRoot::additionalTooltip() const {
136136
RootItem* InoreaderServiceRoot::obtainNewTreeForSyncIn() const {
137137
auto tree = m_network->feedsCategories(true);
138138

139-
if (tree != nullptr && tree->childCount() > 1) {
139+
if (tree != nullptr) {
140140
auto* lblroot = new LabelsNode(tree);
141141
auto labels = m_network->getLabels();
142142

0 commit comments

Comments
 (0)