summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSims <38142618+suchmememanyskill@users.noreply.github.com>2024-12-12 21:20:59 +0100
committerGitHub <noreply@github.com>2024-12-12 21:20:59 +0100
commitd6bfeb27620853a3ed35633df54b15c09e46111b (patch)
tree859fae101216212b74bdf77d21817e780a75f6b3
parent43f22329e1b2ca4f707e6c748ea9c013337de8b2 (diff)
downloaddecky-loader-d6bfeb27620853a3ed35633df54b15c09e46111b.tar.gz
decky-loader-d6bfeb27620853a3ed35633df54b15c09e46111b.zip
Fix id keyerror on plugin uninstall
-rw-r--r--backend/decky_loader/plugin/sandboxed_plugin.py1
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: