Skip to content

Commit

Permalink
Fix id keyerror on plugin uninstall (#725)
Browse files Browse the repository at this point in the history
* Fix id keyerror on plugin uninstall

* This is python

* too bad im changing it anyway

---------

Co-authored-by: AAGaming <[email protected]>
  • Loading branch information
suchmememanyskill and AAGaming00 authored Dec 14, 2024
1 parent 25036b0 commit 83f2c94
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/decky_loader/plugin/sandboxed_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ async def on_new_message(self, message : str) -> str|None:

if "uninstall" in data:
self.uninstalling = data.get("uninstall")
return

d: SocketResponseDict = {"type": SocketMessageType.RESPONSE, "res": None, "success": True, "id": data["id"]}
try:
Expand Down

0 comments on commit 83f2c94

Please sign in to comment.