diff options
-rw-r--r-- | src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java b/src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java index 556d3e8c..a718ead0 100644 --- a/src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java +++ b/src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java @@ -78,7 +78,7 @@ public class PodcastSyncAdapter extends SubsonicSyncAdapter { for(MusicDirectory.Entry entry: podcasts.getChildren()) {
// Make sure podcast is valid and not already synced
if(entry.getId() != null && "completed".equals(((PodcastEpisode)entry).getStatus()) && !existingEpisodes.contains(entry.getId())) {
- DownloadFile file = new DownloadFile(context, entry, true);
+ DownloadFile file = new DownloadFile(context, entry, false);
while(!file.isSaved() && !file.isFailedMax()) {
file.downloadNow(musicService);
}
|