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

Commit

Permalink
Merge pull request #78 from SerhiiSolobaievUptech/fix/67
Browse files Browse the repository at this point in the history
fix 67 issue: #67
  • Loading branch information
alhazmy13 committed Sep 16, 2018
2 parents 7373fb4 + e315fdf commit 4315476
Showing 1 changed file with 1 addition and 2 deletions.
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

0 comments on commit 4315476

Please sign in to comment.