Skip to content

Commit

Permalink
Fix using the wrong state key
Browse files Browse the repository at this point in the history
  • Loading branch information
zwarm committed Jun 19, 2024
1 parent 2758f22 commit 82a6ca6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ class EditPostActivity : LocaleAwareActivity(), EditorFragmentActivity, EditorIm
}

isNewPost = state.getBoolean(EditPostActivityConstants.STATE_KEY_IS_NEW_POST, false)
isVoiceContentSet = state.getBoolean(EditPostActivityConstants.STATE_KEY_IS_NEW_POST, false)
isVoiceContentSet = state.getBoolean(EditPostActivityConstants.STATE_KEY_IS_VOICE_CONTENT_SET, false)
updatePostLoadingAndDialogState(
fromInt(
state.getInt(EditPostActivityConstants.STATE_KEY_POST_LOADING_STATE, 0)
Expand Down

0 comments on commit 82a6ca6

Please sign in to comment.