From 2143e5e685395ca746f1418126d5b67245258c39 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Mon, 19 Sep 2022 09:27:45 +0200 Subject: [PATCH] fix #807 --- src/librssguard/services/feedly/feedlynetwork.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/librssguard/services/feedly/feedlynetwork.cpp b/src/librssguard/services/feedly/feedlynetwork.cpp index e04549c99..dd4d725ec 100644 --- a/src/librssguard/services/feedly/feedlynetwork.cpp +++ b/src/librssguard/services/feedly/feedlynetwork.cpp @@ -553,6 +553,14 @@ RootItem* FeedlyNetwork::decodeCollections(const QByteArray& json, feed->setDescription(qApp->web()->stripTags(fee_obj[QSL("description")].toString())); feed->setCustomId(fee_obj[QSL("id")].toString()); + if (feed->title().isEmpty()) { + feed->setTitle(feed->description()); + } + + if (feed->title().isEmpty()) { + feed->setTitle(feed->source()); + } + if (obtain_icons) { QIcon icon; auto result = NetworkFactory::downloadIcon({{fee_obj[QSL("iconUrl")].toString(), true},