diff options
author | Sadie Powell <sadie@witchery.services> | 2024-09-01 09:43:38 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-09-01 09:43:38 +0100 |
commit | 4e3720b810c0ef08cbbf32142535826e62386a89 (patch) | |
tree | 53003e906800a34bad5c3f2b49a80fc9f356dd42 /modules | |
parent | 82993c8d1e3a4de135f27608b0637a4d4dee53db (diff) | |
parent | 4b48fc98d3102cbf79d599bbb4d443cd41d7c89c (diff) |
Merge branch '2.0' into 2.1.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/memoserv/memoserv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/memoserv/memoserv.cpp b/modules/memoserv/memoserv.cpp index 084650542..3b2a521c7 100644 --- a/modules/memoserv/memoserv.cpp +++ b/modules/memoserv/memoserv.cpp @@ -20,7 +20,7 @@ class MemoServCore final static bool SendMemoMail(NickCore *nc, MemoInfo *mi, Memo *m) { Anope::string subject = Language::Translate(nc, Config->GetBlock("mail")->Get<const Anope::string>("memo_subject").c_str()), - message = Language::Translate(Config->GetBlock("mail")->Get<const Anope::string>("memo_message").c_str()); + message = Language::Translate(nc, Config->GetBlock("mail")->Get<const Anope::string>("memo_message").c_str()); subject = subject.replace_all_cs("%n", nc->display); subject = subject.replace_all_cs("%s", m->sender); |