diff options
| -rw-r--r-- | backend/browser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/browser.py b/backend/browser.py index 316d57a8..c037bfcb 100644 --- a/backend/browser.py +++ b/backend/browser.py @@ -66,7 +66,7 @@ class PluginBrowser: return web.Response(text="Requested plugin uninstall") async def _install(self, artifact, name, version, hash): - self.uninstall_plugin(name) + await self.uninstall_plugin(name) self.log.info(f"Installing {name} (Version: {version})") async with ClientSession() as client: self.log.debug(f"Fetching {artifact}") |
