temporarily disable icon fetching for freshrss until upstream bugs fixed

This commit is contained in:
Martin Rotter 2021-05-21 09:46:58 +02:00
parent 5569465daf
commit e3764dfc26
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@
<url type="donation">https://martinrotter.github.io/donate/</url>
<content_rating type="oars-1.1" />
<releases>
<release version="3.9.2" date="2021-05-20"/>
<release version="3.9.2" date="2021-05-21"/>
</releases>
<content_rating type="oars-1.0">
<content_attribute id="violence-cartoon">none</content_attribute>

View File

@ -355,7 +355,7 @@ RootItem* GreaderNetwork::decodeTagsSubscriptions(const QString& categories, con
QIcon icon;
if (NetworkFactory::downloadIcon(icon_urls,
timeout,
1000,
icon,
proxy) == QNetworkReply::NetworkError::NoError) {
feed->setIcon(icon);

View File

@ -198,5 +198,5 @@ void GreaderServiceRoot::updateTitleIcon() {
}
RootItem* GreaderServiceRoot::obtainNewTreeForSyncIn() const {
return m_network->categoriesFeedsLabelsTree(true, networkProxy());
return m_network->categoriesFeedsLabelsTree(network()->service() != Service::FreshRss, networkProxy());
}