add null check to playerNotificationManager and player on Destroy
This commit is contained in:
parent
55f2c07321
commit
b21b4e945d
@ -118,11 +118,13 @@ public class VideoPlayerService extends Service {
|
||||
public void onDestroy() {
|
||||
|
||||
Log.v(TAG, "onDestroy...");
|
||||
|
||||
playerNotificationManager.setPlayer(null);
|
||||
player.release();
|
||||
player = null;
|
||||
|
||||
if (playerNotificationManager != null) {
|
||||
playerNotificationManager.setPlayer(null);
|
||||
}
|
||||
if (player != null) {
|
||||
player.release();
|
||||
player = null;
|
||||
}
|
||||
super.onDestroy();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user