From 2b28ced7f2786317453e1e49e8c1d9785b45b557 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Tue, 1 Jul 2025 14:43:48 -0400 Subject: fix updater reload freezing --- backend/decky_loader/updater.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/decky_loader/updater.py b/backend/decky_loader/updater.py index 75f9618b..46de1f86 100644 --- a/backend/decky_loader/updater.py +++ b/backend/decky_loader/updater.py @@ -142,8 +142,6 @@ class Updater: async def download_decky_binary(self, download_url: str, version: str, is_zip: bool = False, size_in_bytes: int | None = None): download_filename = "PluginLoader" if ON_LINUX else "PluginLoader.exe" download_temp_filename = download_filename + ".new" - tab = await get_gamepadui_tab() - await tab.open_websocket() if size_in_bytes == None: size_in_bytes = 26214400 # 25MiB, a reasonable overestimate (19.6MiB as of 2024/02/25) @@ -186,7 +184,6 @@ class Updater: logger.info("Updated loader installation.") await self.context.ws.emit("updater/finish_download") - await tab.close_websocket() await self.do_restart() async def do_update(self): -- cgit v1.2.3