diff options
| author | Sims <38142618+suchmememanyskill@users.noreply.github.com> | 2024-12-14 04:38:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-13 22:38:33 -0500 |
| commit | 83f2c947122caa8e1d215dbd42def42ec787137a (patch) | |
| tree | ec5e508f50e1653dfbd30ee431604b3d3365453c | |
| parent | 25036b065fbd4b50fc14478ed73c55d7db4ddfb4 (diff) | |
| download | decky-loader-3.0.5-pre1.tar.gz decky-loader-3.0.5-pre1.zip | |
Fix id keyerror on plugin uninstall (#725)v3.0.5-pre1v3.0.5
* Fix id keyerror on plugin uninstall
* This is python
* too bad im changing it anyway
---------
Co-authored-by: AAGaming <aagaming@riseup.net>
| -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..7d88719f 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 d: SocketResponseDict = {"type": SocketMessageType.RESPONSE, "res": None, "success": True, "id": data["id"]} try: |
