File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
WordPress/src/main/java/org/wordpress/android/ui/prefs Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 77* [*] Fix a crash that occurs when remove a user [https://github.com/wordpress-mobile/WordPress-Android/pull/20837]
88* [*] Fixed a rare crash on the featured image confirmation dialog [https://github.com/wordpress-mobile/WordPress-Android/pull/20836]
99* [*] Fixed an ANR issue on the Post List screen [https://github.com/wordpress-mobile/WordPress-Android/pull/20833]
10+ * [*] Fixed a crash that occurs with Blogging Reminders [https://github.com/wordpress-mobile/WordPress-Android/pull/20845]
1011* [*] [internal] Block Editor: Upgrade target sdk version to Android API 34 [https://github.com/wordpress-mobile/WordPress-Android/pull/20841]
1112* [*] [internal] In-app updates feature [https://github.com/wordpress-mobile/WordPress-Android/pull/20822]
1213
Original file line number Diff line number Diff line change @@ -1301,7 +1301,7 @@ private void initBloggingReminders() {
13011301 }
13021302
13031303 private void setupBloggingRemindersBottomSheet () {
1304- if (mBloggingRemindersPref == null || !isAdded ()) {
1304+ if (mBloggingRemindersPref == null || !isAdded () || mSite == null || mBloggingRemindersViewModel == null ) {
13051305 return ;
13061306 }
13071307 mBloggingRemindersViewModel .onBlogSettingsItemClicked (mSite .getId ());
You can’t perform that action at this time.
0 commit comments