mirror of
https://github.com/maubot/maubot
synced 2025-08-29 19:00:39 +00:00
Fix bugs in init and plugin upload filenames
This commit is contained in:
parent
767885cec7
commit
28d7731e70
4 changed files with 15 additions and 7 deletions
|
@ -129,7 +129,10 @@ class PluginInstance:
|
|||
return
|
||||
self.log.debug("Stopping plugin instance...")
|
||||
self.running = False
|
||||
await self.plugin.stop()
|
||||
try:
|
||||
await self.plugin.stop()
|
||||
except Exception:
|
||||
self.log.exception("Failed to stop instance")
|
||||
self.plugin = None
|
||||
|
||||
@classmethod
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue