diff options
author | Adam <Adam@anope.org> | 2016-09-14 17:24:06 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-09-14 17:24:06 -0400 |
commit | d8a945b1a6f4e500bcb9162cf388f6984ad38328 (patch) | |
tree | 4d86cb5925780dad92deb04173aeee5956f6f8dc /modules/commands/ms_send.cpp | |
parent | b50fbec705dffd85a28946b99ac510b978934a05 (diff) |
Always use display for memo source
Diffstat (limited to 'modules/commands/ms_send.cpp')
-rw-r--r-- | modules/commands/ms_send.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ms_send.cpp b/modules/commands/ms_send.cpp index b028706d3..73ffd4c41 100644 --- a/modules/commands/ms_send.cpp +++ b/modules/commands/ms_send.cpp @@ -45,7 +45,7 @@ class CommandMSSend : public Command return; } - MemoServService::MemoResult result = memoserv->Send(source.GetNick(), nick, text); + MemoServService::MemoResult result = memoserv->Send(source.GetAccount()->display, nick, text); if (result == MemoServService::MEMO_SUCCESS) { source.Reply(_("Memo sent to \002%s\002."), nick.c_str()); |