diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-09-22 10:55:57 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-09-22 10:55:57 +0200 |
commit | 7bbbeb0382f8c03212b7360d83a6da2988a244d6 (patch) | |
tree | 7af21ce281cd650fa6e939bc4249f8a2735d8ac4 /src/de/danoeh/antennapod | |
parent | 48292609f6586fbb85ed59a4a46a5e23e49fba61 (diff) | |
parent | 952c6aa331d7f9edaa886264057803632c3c9240 (diff) | |
download | AntennaPod-7bbbeb0382f8c03212b7360d83a6da2988a244d6.zip |
Merge branch 'develop' into chapters
Diffstat (limited to 'src/de/danoeh/antennapod')
-rw-r--r-- | src/de/danoeh/antennapod/util/PlaybackController.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/de/danoeh/antennapod/util/PlaybackController.java b/src/de/danoeh/antennapod/util/PlaybackController.java index 417c6d576..3e0ffb2ad 100644 --- a/src/de/danoeh/antennapod/util/PlaybackController.java +++ b/src/de/danoeh/antennapod/util/PlaybackController.java @@ -150,7 +150,8 @@ public abstract class PlaybackController { if (AppConfig.DEBUG) Log.d(TAG, "PlaybackService is running, trying to connect without start command."); - bound = activity.bindService(new Intent(activity, PlaybackService.class), mConnection, 0); + bound = activity.bindService(new Intent(activity, + PlaybackService.class), mConnection, 0); } if (AppConfig.DEBUG) Log.d(TAG, "Result for service binding: " + bound); @@ -406,6 +407,8 @@ public abstract class PlaybackController { setupGUI(); handleStatus(); + // make sure that new media is loaded if it's available + mediaInfoLoaded = false; } else { Log.e(TAG, |