diff options
| author | Sims <38142618+suchmememanyskill@users.noreply.github.com> | 2024-06-01 13:49:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-01 13:49:08 +0200 |
| commit | 0ab84cacf3774b225c46eda0d88281f266716cb8 (patch) | |
| tree | 66c722894fe447d6081f040506b9e85585f4932d | |
| parent | 3a83fa81def62c2ee3d9bedc3a78c00073d8fdb6 (diff) | |
| download | decky-loader-0ab84cacf3774b225c46eda0d88281f266716cb8.tar.gz decky-loader-0ab84cacf3774b225c46eda0d88281f266716cb8.zip | |
Add new user agent (#610)
| -rw-r--r-- | backend/src/injector.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/injector.py b/backend/src/injector.py index 2e8846c6..1eec94b6 100644 --- a/backend/src/injector.py +++ b/backend/src/injector.py @@ -412,7 +412,7 @@ async def get_tab_lambda(test: Callable[[Tab], bool]) -> Tab: SHARED_CTX_NAMES = ["SharedJSContext", "Steam Shared Context presented by Valveā¢", "Steam", "SP"] CLOSEABLE_URLS = ["about:blank", "data:text/html,%3Cbody%3E%3C%2Fbody%3E"] # Closing anything other than these *really* likes to crash Steam -DO_NOT_CLOSE_URLS = ["Valve Steam Gamepad/default", "Valve%20Steam%20Gamepad/default"] # Steam Big Picture Mode tab +DO_NOT_CLOSE_URLS = ["Valve Steam Gamepad/default", "Valve%20Steam%20Gamepad"] # Steam Big Picture Mode tab def tab_is_gamepadui(t: Tab) -> bool: return "https://steamloopback.host/routes/" in t.url and t.title in SHARED_CTX_NAMES |
