mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-31 02:44:53 +01:00
Fix #4765: Disable autoDownload for local feeds
This commit is contained in:
parent
a7c6e697c2
commit
20db2c2f5c
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user