xplat/js/react-native-github/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.kt (#53656)

Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/53656

Reviewed By: cortinico

Differential Revision: D82005918

fbshipit-source-id: 5b0728e68fff865e8a9271c0dfc0a3cc19baa54c
This commit is contained in:
generatedunixname537391475639613
2025-09-09 08:13:12 -07:00
committed by Facebook GitHub Bot
parent a16c6c9477
commit 226d2ba160
@@ -310,8 +310,8 @@ public open class JavaTimerManager(
}
}
}
timersToCall?.let {
javaScriptTimerExecutor.callTimers(it)
timersToCall?.let { timers ->
javaScriptTimerExecutor.callTimers(timers)
timersToCall = null
}
reactChoreographer.postFrameCallback(ReactChoreographer.CallbackType.TIMERS_EVENTS, this)