Skip to content

Commit

Permalink
Fix onHostPause crash on Android (#7812)
Browse files Browse the repository at this point in the history
* Fix onHostPause crash on Android

* Update NavigationModule.java
  • Loading branch information
yogevbd authored Nov 19, 2023
1 parent d2668c5 commit 2d3a4fb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ public NavigationModule(ReactApplicationContext reactContext, ReactInstanceManag
@Override
public void onHostPause() {
super.onHostPause();
UiUtils.runOnMainThread(() -> navigator().onHostPause());
UiUtils.runOnMainThread(() -> {
if (activity() != null) navigator().onHostPause();
});
}

@Override
Expand Down

0 comments on commit 2d3a4fb

Please sign in to comment.