diff options
| author | Sims <38142618+suchmememanyskill@users.noreply.github.com> | 2024-12-12 21:20:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-12 21:20:59 +0100 |
| commit | d6bfeb27620853a3ed35633df54b15c09e46111b (patch) | |
| tree | 859fae101216212b74bdf77d21817e780a75f6b3 | |
| parent | 43f22329e1b2ca4f707e6c748ea9c013337de8b2 (diff) | |
| download | decky-loader-d6bfeb27620853a3ed35633df54b15c09e46111b.tar.gz decky-loader-d6bfeb27620853a3ed35633df54b15c09e46111b.zip | |
Fix id keyerror on plugin uninstall
| -rw-r--r-- | backend/decky_loader/plugin/sandboxed_plugin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/decky_loader/plugin/sandboxed_plugin.py b/backend/decky_loader/plugin/sandboxed_plugin.py index 85ad6e13..20549500 100644 --- a/backend/decky_loader/plugin/sandboxed_plugin.py +++ b/backend/decky_loader/plugin/sandboxed_plugin.py @@ -186,6 +186,7 @@ class SandboxedPlugin: if "uninstall" in data: self.uninstalling = data.get("uninstall") + return None; d: SocketResponseDict = {"type": SocketMessageType.RESPONSE, "res": None, "success": True, "id": data["id"]} try: |
