summaryrefslogtreecommitdiff
path: root/src/commands/cmd_who.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-02-14 12:15:00 +0100
committerAttila Molnar <attilamolnar@hush.com>2014-02-14 12:15:00 +0100
commit74ccc28da30896ee715504d53822f7b3ce6ec86f (patch)
treefaa72eeee26610355d23b71c27a2b1670629836e /src/commands/cmd_who.cpp
parent51b5f06c48b98a256eb56ea5f7e4d5d170555e84 (diff)
Move GetPrefixChar() from Channel to Membership
Diffstat (limited to 'src/commands/cmd_who.cpp')
-rw-r--r--src/commands/cmd_who.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_who.cpp b/src/commands/cmd_who.cpp
index d7084d53b..2be724e91 100644
--- a/src/commands/cmd_who.cpp
+++ b/src/commands/cmd_who.cpp
@@ -224,7 +224,7 @@ void CommandWho::SendWhoLine(User* user, const std::vector<std::string>& parms,
}
if (memb)
- wholine.append(memb->chan->GetPrefixChar(u));
+ wholine.push_back(memb->GetPrefixChar());
wholine.append(" :0 " + u->fullname);