This commit is contained in:
Martin Rotter 2022-09-15 09:44:11 +02:00
parent b3216c570b
commit 810dd30412
2 changed files with 1 additions and 2 deletions

View File

@ -62,6 +62,7 @@ class FeedDownloader : public QObject {
void finalizeUpdate();
void removeDuplicateMessages(QList<Message>& messages);
private:
bool m_isCacheSynchronizationRunning;
bool m_stopCacheSynchronization;
QList<Feed*> m_feeds = {};

View File

@ -248,12 +248,10 @@ QList<Feed*> FeedsModel::feedsForScheduledUpdate(bool auto_update_now) {
for (Feed* feed : qAsConst(stf)) {
switch (feed->autoUpdateType()) {
case Feed::AutoUpdateType::DontAutoUpdate:
// Do not auto-update this feed ever.
continue;
case Feed::AutoUpdateType::DefaultAutoUpdate:
if (auto_update_now) {
feeds_for_update.append(feed);
}