BugFix: fixed email.

This commit is contained in:
2018-03-08 16:45:53 +01:00
parent cf898fd4b1
commit ccb7a00510

View File

@@ -95,7 +95,7 @@ class AbstractEventMail(AbstractMail):
def send(self): def send(self):
if not app_config.settings.enable_email_notifications: if not app_config.settings.enable_email_notifications:
return None return None
return super(AbstractMail, self).send() return super(AbstractEventMail, self).send()
class NewEventMail(AbstractEventMail): class NewEventMail(AbstractEventMail):