mirror of https://github.com/SeanOMik/znc-push.git
Merge pull request #29 from danparsons/master
Changed from <nick> to [nick] in OnChanMsg
This commit is contained in:
commit
66a06d465c
4
push.cpp
4
push.cpp
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue