mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 08:47:49 +00:00
fix broken trycatch causing occasional injection failures
This commit is contained in:
+1
-1
@@ -124,7 +124,7 @@ class PluginManager:
|
|||||||
while not tab:
|
while not tab:
|
||||||
try:
|
try:
|
||||||
tab = await get_gamepadui_tab()
|
tab = await get_gamepadui_tab()
|
||||||
except client_exceptions.ClientConnectorError or client_exceptions.ServerDisconnectedError:
|
except (client_exceptions.ClientConnectorError, client_exceptions.ServerDisconnectedError):
|
||||||
if not dc:
|
if not dc:
|
||||||
logger.debug("Couldn't connect to debugger, waiting...")
|
logger.debug("Couldn't connect to debugger, waiting...")
|
||||||
dc = True
|
dc = True
|
||||||
|
|||||||
Reference in New Issue
Block a user