Reviewed By: javache

Differential Revision: D4953667

fbshipit-source-id: e27f9df072f2e89b541c9ef46c637987c27d1d99
This commit is contained in:
Aaron Chiu 2017-04-26 20:11:37 -07:00 committed by Facebook Github Bot
parent 67a3b4c224
commit 414f5c88ff
1 changed files with 2 additions and 1 deletions

View File

@ -409,7 +409,8 @@ public class ReactInstanceManager {
if (Intent.ACTION_VIEW.equals(action) && uri != null) {
DeviceEventManagerModule deviceEventManagerModule =
Assertions.assertNotNull(mCurrentReactContext).getNativeModule(DeviceEventManagerModule.class);
Assertions.assertNotNull(mCurrentReactContext)
.getNativeModule(DeviceEventManagerModule.class);
deviceEventManagerModule.emitNewIntentReceived(uri);
}