Changed from <nick> to [nick] in OnChanMsg

Boxcar and other apps delete strings inside <> like IRC nicks, so changed to [nick] from <nick>
This commit is contained in:
Dan Parsons 2013-02-12 17:55:38 -08:00
parent 7114eea23a
commit 11c0e3a634
1 changed files with 2 additions and 2 deletions

View File

@ -827,8 +827,8 @@ class CPushMod : public CModule
{ {
CString title = "Highlight"; CString title = "Highlight";
CString msg = channel.GetName(); CString msg = channel.GetName();
msg += ": <" + nick.GetNick(); msg += ": [" + nick.GetNick();
msg += "> " + message; msg += "] " + message;
send_message(msg, title, channel.GetName()); send_message(msg, title, channel.GetName());
} }