Fix detection of local-only refresh (#7088)

This commit is contained in:
ByteHamster 2024-04-13 10:04:03 +02:00 committed by GitHub
parent 863d4c3b61
commit 456159e85f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ public class FeedUpdateWorker extends Worker {
Feed feed = itr.next();
if (!feed.getPreferences().getKeepUpdated()) {
itr.remove();
continue;
}
if (!feed.isLocalFeed()) {
allAreLocal = false;