diff options
author | Tekhnee <info@tekhnee.org> | 2020-04-25 21:24:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-25 21:24:21 +0300 |
commit | 7ee67339e0591af3dc8667c087972e2853a875df (patch) | |
tree | 30e3a0262879c628f3eacb8b1514f0c121eaf864 /lib/private/Mail | |
parent | 39f6f1ba341b053f8830571f6f2238c1653cf1ea (diff) | |
download | nextcloud-server-7ee67339e0591af3dc8667c087972e2853a875df.tar.gz nextcloud-server-7ee67339e0591af3dc8667c087972e2853a875df.zip |
Adhere to EMailTemplate interface in constructor call.
Email creation appears to have been refactored lately but it looks like custom template-based emails were left out.
Signed-off-by: Tekhnee <info@tekhnee.org>
Diffstat (limited to 'lib/private/Mail')
-rw-r--r-- | lib/private/Mail/Mailer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Mail/Mailer.php b/lib/private/Mail/Mailer.php index 3ef77e6239c..120cbdfe6ab 100644 --- a/lib/private/Mail/Mailer.php +++ b/lib/private/Mail/Mailer.php @@ -154,7 +154,7 @@ class Mailer implements IMailer { return new $class( $this->defaults, $this->urlGenerator, - $this->l10n, + $this->l10nFactory, $emailId, $data ); |