diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-01-01 09:12:16 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-01-01 09:12:16 -0800 |
commit | 18f827cf970124059044d5c1c8c4fa50893d6778 (patch) | |
tree | 310885bce87eebacf5be7297d77fdec65eedff32 | |
parent | af292f1f2aed1c4274092d1d546ab25217ff83fb (diff) | |
download | dsub-18f827cf970124059044d5c1c8c4fa50893d6778.tar.gz dsub-18f827cf970124059044d5c1c8c4fa50893d6778.tar.bz2 dsub-18f827cf970124059044d5c1c8c4fa50893d6778.zip |
#235 Don't pin synced podcasts
-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);
}
|