fix(android): catch errors in performOnPlayerView
(#3685)
Co-authored-by: JinYuSha0 <a1009943858@gmail.com>
This commit is contained in:
parent
042e13c1dc
commit
3e3532691a
@ -18,6 +18,7 @@ class VideoManagerModule(reactContext: ReactApplicationContext?) : ReactContextB
|
|||||||
|
|
||||||
private fun performOnPlayerView(reactTag: Int, callback: (ReactExoplayerView?) -> Unit) {
|
private fun performOnPlayerView(reactTag: Int, callback: (ReactExoplayerView?) -> Unit) {
|
||||||
UiThreadUtil.runOnUiThread {
|
UiThreadUtil.runOnUiThread {
|
||||||
|
try {
|
||||||
val uiManager = UIManagerHelper.getUIManager(
|
val uiManager = UIManagerHelper.getUIManager(
|
||||||
reactApplicationContext,
|
reactApplicationContext,
|
||||||
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) UIManagerType.FABRIC else UIManagerType.DEFAULT
|
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) UIManagerType.FABRIC else UIManagerType.DEFAULT
|
||||||
@ -30,6 +31,9 @@ class VideoManagerModule(reactContext: ReactApplicationContext?) : ReactContextB
|
|||||||
} else {
|
} else {
|
||||||
callback(null)
|
callback(null)
|
||||||
}
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
callback(null)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user