mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-02-07 05:54:18 +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();
|
Iterator<FeedItem> it = candidates.iterator();
|
||||||
while (it.hasNext()) {
|
while (it.hasNext()) {
|
||||||
FeedItem item = it.next();
|
FeedItem item = it.next();
|
||||||
if (!item.isAutoDownloadable()) {
|
if (!item.isAutoDownloadable() || item.getFeed().isLocalFeed()) {
|
||||||
it.remove();
|
it.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user