Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not crash when the main activity is unavailable
The React Native application context has a method for obtaining the current Android activity, but this sometimes returns null. We believe this happens due to a race condition between the Javascript engine and the native code, but we aren't completely sure. What we do know is that this situation happens in the wild, since it shows up in our Bugsnag reports. The fix is the leave the BlurView native component uninitialized in these cases.This prevents it from rendering anything, but that's preferable to crashing the whole app.
- Loading branch information