Merge pull request #783 from TomHennen/fix_npe_on_shutdown

Fixes NPE in PlaybackWidgetService
This commit is contained in:
Tom Hennen 2015-05-02 21:56:25 -04:00
commit 4e78205e62
1 changed files with 14 additions and 13 deletions

View File

@ -52,7 +52,7 @@ public class PlayerWidgetService extends Service {
public void onDestroy() {
super.onDestroy();
Log.d(TAG, "Service is about to be destroyed");
if (playbackService != null) {
Playable playable = playbackService.getPlayable();
if (playable != null && playable instanceof FeedMedia) {
FeedMedia media = (FeedMedia) playable;
@ -68,6 +68,7 @@ public class PlayerWidgetService extends Service {
}
}
}
}
try {
unbindService(mConnection);