Fix #4765: Disable autoDownload for local feeds

This commit is contained in:
Herbert Reiter 2020-12-20 21:51:49 +01:00
parent a7c6e697c2
commit 20db2c2f5c

View File

@ -65,7 +65,7 @@ public class APDownloadAlgorithm implements AutomaticDownloadAlgorithm {
Iterator<FeedItem> it = candidates.iterator();
while (it.hasNext()) {
FeedItem item = it.next();
if (!item.isAutoDownloadable()) {
if (!item.isAutoDownloadable() || item.getFeed().isLocalFeed()) {
it.remove();
}
}