diff options
| author | AAGaming <aa@mail.catvibers.me> | 2022-11-19 19:22:30 -0500 |
|---|---|---|
| committer | AAGaming <aa@mail.catvibers.me> | 2022-11-19 19:22:30 -0500 |
| commit | 1e02fcf39436112e898fd8b10ee94b6e158a4aee (patch) | |
| tree | b20c2f6cf5d62e19958b9c38df5cc2a66db57737 /backend/main.py | |
| parent | f923306a7fe01f0841f34ccb884e1bcc68a81157 (diff) | |
| download | decky-loader-1e02fcf39436112e898fd8b10ee94b6e158a4aee.tar.gz decky-loader-1e02fcf39436112e898fd8b10ee94b6e158a4aee.zip | |
fix broken trycatch causing occasional injection failures
Diffstat (limited to 'backend/main.py')
| -rw-r--r-- | backend/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/main.py b/backend/main.py index cd73ce26..c144c13a 100644 --- a/backend/main.py +++ b/backend/main.py @@ -124,7 +124,7 @@ class PluginManager: while not tab: try: tab = await get_gamepadui_tab() - except client_exceptions.ClientConnectorError or client_exceptions.ServerDisconnectedError: + except (client_exceptions.ClientConnectorError, client_exceptions.ServerDisconnectedError): if not dc: logger.debug("Couldn't connect to debugger, waiting...") dc = True |
