Skip to content
This repository has been archived by the owner on May 30, 2021. It is now read-only.

fix 67 issue: https://github.com/alhazmy13/MediaPicker/issues/67 #78

Merged
merged 1 commit into from Sep 16, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -179,8 +179,7 @@ protected void onSaveInstanceState(Bundle outState) {
outState.putString(ImageTags.Tags.CAMERA_IMAGE_URI, mImageUri.toString());
outState.putSerializable(ImageTags.Tags.IMG_CONFIG, mImgConfig);
}
outState.putBoolean(ImageTags.Tags.IS_ALERT_SHOWING, alertDialog.isShowing());

outState.putBoolean(ImageTags.Tags.IS_ALERT_SHOWING, (alertDialog == null ? false : alertDialog.isShowing()));
}

@Override
Expand Down