Merge branch 'develop' into chapters
This commit is contained in:
commit
7bbbeb0382
|
@ -150,7 +150,8 @@ public abstract class PlaybackController {
|
||||||
if (AppConfig.DEBUG)
|
if (AppConfig.DEBUG)
|
||||||
Log.d(TAG,
|
Log.d(TAG,
|
||||||
"PlaybackService is running, trying to connect without start command.");
|
"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)
|
if (AppConfig.DEBUG)
|
||||||
Log.d(TAG, "Result for service binding: " + bound);
|
Log.d(TAG, "Result for service binding: " + bound);
|
||||||
|
@ -406,6 +407,8 @@ public abstract class PlaybackController {
|
||||||
|
|
||||||
setupGUI();
|
setupGUI();
|
||||||
handleStatus();
|
handleStatus();
|
||||||
|
// make sure that new media is loaded if it's available
|
||||||
|
mediaInfoLoaded = false;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Log.e(TAG,
|
Log.e(TAG,
|
||||||
|
|
Loading…
Reference in New Issue