From 18f827cf970124059044d5c1c8c4fa50893d6778 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Wed, 1 Jan 2014 09:12:16 -0800 Subject: #235 Don't pin synced podcasts --- src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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); } -- cgit v1.2.3