diff options
| author | Wayne Heaney <42350981+wheaney@users.noreply.github.com> | 2024-03-13 15:59:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-13 23:59:22 +0100 |
| commit | 34fb7bb5383084dde5e60bba2c27c273d94cc664 (patch) | |
| tree | d0e858f6057e6e90a4de854469fc5f0f3b63b57e /backend/src/browser.py | |
| parent | 4a7e9a5f3dc8fa1ab4789ac8396b030d72e1facc (diff) | |
| download | decky-loader-34fb7bb5383084dde5e60bba2c27c273d94cc664.tar.gz decky-loader-34fb7bb5383084dde5e60bba2c27c273d94cc664.zip | |
Add Plugin.uninstall callback support (#555)
* Add Plugin.uninstall callback support
https://github.com/SteamDeckHomebrew/decky-loader/issues/536
* Remove empty deck.sh
Diffstat (limited to 'backend/src/browser.py')
| -rw-r--r-- | backend/src/browser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/browser.py b/backend/src/browser.py index 025e8fe7..63652898 100644 --- a/backend/src/browser.py +++ b/backend/src/browser.py @@ -138,7 +138,7 @@ class PluginBrowser: # logger.debug("current plugins: %s", snapshot_string) if name in self.plugins: logger.debug("Plugin %s was found", name) - self.plugins[name].stop() + self.plugins[name].stop(uninstall=True) logger.debug("Plugin %s was stopped", name) del self.plugins[name] logger.debug("Plugin %s was removed from the dictionary", name) |
