summaryrefslogtreecommitdiff
path: root/modules/commands/ms_send.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2016-09-30 20:52:38 -0400
committerAdam <Adam@anope.org>2016-09-30 20:52:38 -0400
commit1c82697ccbf85359e86ec815bd66a74803c7ac3f (patch)
tree1c807d307d54bbecdbfec011040ade1327f76210 /modules/commands/ms_send.cpp
parentf3bb46a9f5bb6154f9d23dc62765758a9135f0e6 (diff)
Revert "Always use display for memo source"
This reverts commit d8a945b1a6f4e500bcb9162cf388f6984ad38328.
Diffstat (limited to 'modules/commands/ms_send.cpp')
-rw-r--r--modules/commands/ms_send.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ms_send.cpp b/modules/commands/ms_send.cpp
index 73ffd4c41..b028706d3 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.GetAccount()->display, nick, text);
+ MemoServService::MemoResult result = memoserv->Send(source.GetNick(), nick, text);
if (result == MemoServService::MEMO_SUCCESS)
{
source.Reply(_("Memo sent to \002%s\002."), nick.c_str());