Skip to content

Commit

Permalink
Merge pull request #20055 from wordpress-mobile/merge/24.0.2-to-relea…
Browse files Browse the repository at this point in the history
…se_24.1

Merge 24.0.2 to release/24.1
  • Loading branch information
oguzkocer committed Jan 26, 2024
2 parents cf3f220 + 24d7909 commit 091a492
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
* [**] Disabled the ability of creating new Story posts. [#20014]
* [**] Disable Story block [https://github.com/wordpress-mobile/WordPress-Android/pull/20005]

24.0.2
-----
* [**] Fix Aztec editor crash when losing or gaining network connectivity [https://github.com/wordpress-mobile/WordPress-Android/pull/20053]

24.0.1
-----
* [**] Fix crash when RichText values are not defined [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6563]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
import org.wordpress.android.editor.EditorMediaUtils;
import org.wordpress.android.editor.EditorThemeUpdateListener;
import org.wordpress.android.editor.ExceptionLogger;
import org.wordpress.android.editor.gutenberg.GutenbergNetworkConnectionListener;
import org.wordpress.android.editor.savedinstance.SavedInstanceDatabase;
import org.wordpress.android.editor.gutenberg.DialogVisibility;
import org.wordpress.android.editor.gutenberg.GutenbergEditorFragment;
Expand Down Expand Up @@ -3835,6 +3836,8 @@ public void onEventMainThread(UploadService.UploadMediaRetryEvent event) {

@Subscribe(threadMode = ThreadMode.MAIN)
public void onEventMainThread(ConnectionChangeReceiver.ConnectionChangeEvent event) {
if (!(mEditorFragment instanceof GutenbergNetworkConnectionListener)) return;

((GutenbergEditorFragment) mEditorFragment).onConnectionStatusChange(event.isConnected());
}

Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
versionName=24.1-rc-2
versionCode=1403
versionCode=1404

0 comments on commit 091a492

Please sign in to comment.