aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java b/src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java
index e97f32d2..556d3e8c 100644
--- a/src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java
+++ b/src/github/daneren2005/dsub/service/sync/PodcastSyncAdapter.java
@@ -60,11 +60,11 @@ public class PodcastSyncAdapter extends SubsonicSyncAdapter {
try {
// Only refresh if syncs exist (implies a server where supported)
if(podcastList.size() > 0) {
- // Refresh podcast listings before syncing
- musicService.refreshPodcasts(context, null);
-
// Just update podcast listings so user doesn't have to
musicService.getPodcastChannels(true, context, null);
+
+ // Refresh podcast listings before syncing
+ musicService.refreshPodcasts(context, null);
}
List<String> updated = new ArrayList<String>();