Merge pull request #29 from danparsons/master

Changed from <nick> to [nick] in OnChanMsg
This commit is contained in:
John Reese 2013-02-12 18:40:35 -08:00
commit 66a06d465c
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());
} }