mirror of https://github.com/SeanOMik/znc-push.git
Added the message_uri parameter to the faast server. You can set it to your irc app, like colloquy:// and Faast will open Colloquy when you select it
This commit is contained in:
parent
535b36a470
commit
ea84b14304
4
push.cpp
4
push.cpp
|
@ -431,6 +431,10 @@ class CPushMod : public CModule
|
||||||
{
|
{
|
||||||
params["notification[sound]"] = options["message_sound"];
|
params["notification[sound]"] = options["message_sound"];
|
||||||
}
|
}
|
||||||
|
if ( options["message_uri"] != "" )
|
||||||
|
{
|
||||||
|
params["notification[run_command]"] = options["message_uri"];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (service == "url")
|
else if (service == "url")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue