mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-02-03 03:57:41 +01:00
Update play icon when service is stopped
This commit is contained in:
parent
d6e0799a21
commit
1d8d3203d4
@ -210,6 +210,9 @@ public abstract class PlaybackController {
|
|||||||
Log.w(TAG, "Couldn't receive status update: playbackService was null");
|
Log.w(TAG, "Couldn't receive status update: playbackService was null");
|
||||||
if (PlaybackService.isRunning) {
|
if (PlaybackService.isRunning) {
|
||||||
bindToService();
|
bindToService();
|
||||||
|
} else {
|
||||||
|
status = PlayerStatus.STOPPED;
|
||||||
|
handleStatus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -359,6 +362,7 @@ public abstract class PlaybackController {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case STOPPED:
|
case STOPPED:
|
||||||
|
updatePlayButtonAppearance(playResource, playText);
|
||||||
break;
|
break;
|
||||||
case PREPARED:
|
case PREPARED:
|
||||||
checkMediaInfoLoaded();
|
checkMediaInfoLoaded();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user