fix push for notice notifications

This commit is contained in:
Jordan Koch 2019-02-16 11:29:22 -05:00
parent 7ec28b4bde
commit 7914828345

View File

@ -1316,7 +1316,7 @@ class CPushMod : public CModule
{ {
CString title = "Channel Notice"; CString title = "Channel Notice";
send_message(message, title, channel.GetName(), nick); send_message(message, title, channel.GetName(), nick, "notice");
} }
return CONTINUE; return CONTINUE;
@ -1370,7 +1370,7 @@ class CPushMod : public CModule
{ {
CString title = "Private Notice"; CString title = "Private Notice";
send_message(message, title, nick.GetNick(), nick); send_message(message, title, nick.GetNick(), nick, "notice");
} }
return CONTINUE; return CONTINUE;