don't send some "activity no longer available" errors (#9100)

This commit is contained in:
Samuel Newman
2025-09-29 22:15:38 +03:00
committed by GitHub
parent 02a25d2aa2
commit ae2c9a832f
2 changed files with 15 additions and 5 deletions
+5 -1
View File
@@ -84,7 +84,11 @@ if (isIOS) {
}
if (isAndroid) {
// iOS is handled by the config plugin -sfn
ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.PORTRAIT_UP)
ScreenOrientation.lockAsync(
ScreenOrientation.OrientationLock.PORTRAIT_UP,
).catch(error =>
logger.debug('Could not lock orientation', {safeMessage: error}),
)
}
/**