mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 05:02:01 +00:00
Fix id keyerror on plugin uninstall (#725)
* Fix id keyerror on plugin uninstall * This is python * too bad im changing it anyway --------- Co-authored-by: AAGaming <aagaming@riseup.net>
This commit is contained in:
@@ -186,6 +186,7 @@ class SandboxedPlugin:
|
|||||||
|
|
||||||
if "uninstall" in data:
|
if "uninstall" in data:
|
||||||
self.uninstalling = data.get("uninstall")
|
self.uninstalling = data.get("uninstall")
|
||||||
|
return
|
||||||
|
|
||||||
d: SocketResponseDict = {"type": SocketMessageType.RESPONSE, "res": None, "success": True, "id": data["id"]}
|
d: SocketResponseDict = {"type": SocketMessageType.RESPONSE, "res": None, "success": True, "id": data["id"]}
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user