plugin: fix crash on parsing empty command

This commit is contained in:
dece 2020-10-31 18:12:08 +01:00
parent e0901094ea
commit 721d99dba3

View file

@ -101,6 +101,8 @@ class Plugin:
def should_handle_command(self, message, no_content=False):
"""Store Command in object and return True if it should handle it."""
command = self.parse_command(message, no_content=no_content)
if not command:
return False
commands = self.config.get("commands", [])
if (
any(command.ident == c for c in commands) or