We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8733225 commit f55ebdbCopy full SHA for f55ebdb
android/src/main/java/io/csie/kudo/reactnative/v8/executor/V8Module.java
@@ -58,7 +58,11 @@ public boolean queueIdle() {
58
final RuntimeExecutor runtimeExecutor = getReactApplicationContext()
59
.getCatalystInstance()
60
.getRuntimeExecutor();
61
- V8Executor.onMainLoopIdle(runtimeExecutor);
+
62
+ if (runtimeExecutor != null) {
63
+ V8Executor.onMainLoopIdle(runtimeExecutor);
64
+ }
65
66
mLastMainLoopIdleCallbackTime = SystemClock.uptimeMillis();
67
}
68
return true;
0 commit comments