mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 00:37:49 +00:00
Bug fixes
- Fixed KeyError in execute_in_tab - Changed the plugin process dispatch method, this *should* fix that annoying server hang issue.
This commit is contained in:
@@ -73,10 +73,7 @@ class PluginWrapper:
|
||||
def start(self):
|
||||
if self.passive:
|
||||
return self
|
||||
get_event_loop().run_in_executor(
|
||||
ProcessPoolExecutor(),
|
||||
self._init
|
||||
)
|
||||
ProcessPoolExecutor().submit(self._init, self)
|
||||
return self
|
||||
|
||||
def stop(self):
|
||||
|
||||
Reference in New Issue
Block a user