1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 03:58:22 +08:00
This commit is contained in:
GH Action - Upstream Sync
2025-07-03 15:25:04 +00:00
4 changed files with 20 additions and 19 deletions

View File

@@ -486,7 +486,7 @@ class NemuIpc(Platform):
instance_id=index,
display_id=0
).__enter__()
except (NemuIpcIncompatible, NemuIpcError) as e:
except (NemuIpcIncompatible, NemuIpcError, JobTimeout) as e:
logger.error(e)
logger.error('Emulator info incorrect')
@@ -505,7 +505,7 @@ class NemuIpc(Platform):
instance_id=self.emulator_instance.MuMuPlayer12_id,
display_id=0
).__enter__()
except (NemuIpcIncompatible, NemuIpcError) as e:
except (NemuIpcIncompatible, NemuIpcError, JobTimeout) as e:
logger.error(e)
logger.error('Unable to initialize NemuIpc')
raise RequestHumanTakeover