-Fixed NPE when popup is updated during shutdown.

This commit is contained in:
John Zhen Mo 2017-11-04 10:12:38 -07:00
parent b1ee22cde6
commit b883f313ba
1 changed files with 1 additions and 0 deletions

View File

@ -362,6 +362,7 @@ public final class PopupVideoPlayer extends Service {
}
private void updatePopupSize(int width, int height) {
if (playerImpl == null) return;
if (DEBUG) Log.d(TAG, "updatePopupSize() called with: width = [" + width + "], height = [" + height + "]");
width = (int) (width > maximumWidth ? maximumWidth : width < minimumWidth ? minimumWidth : width);