mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 15:01:23 +01:00
Fix typo when getting app name
This commit is contained in:
parent
66b121b2fc
commit
cca94272fa
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class PusherFactory(object):
|
||||||
return self.pusher_types[pusherdict['kind']](self.hs, pusherdict)
|
return self.pusher_types[pusherdict['kind']](self.hs, pusherdict)
|
||||||
|
|
||||||
def _create_email_pusher(self, _hs, pusherdict):
|
def _create_email_pusher(self, _hs, pusherdict):
|
||||||
app_name = self._brand_from_pusherdict
|
app_name = self._app_name_from_pusherdict(pusherdict)
|
||||||
mailer = self.mailers.get(app_name)
|
mailer = self.mailers.get(app_name)
|
||||||
if not mailer:
|
if not mailer:
|
||||||
mailer = Mailer(
|
mailer = Mailer(
|
||||||
|
|
Loading…
Reference in a new issue