Notification No_Sound not working
Posted: Wednesday 24 October 2018 14:35
Hello,
I have tried to use the notifiction sound feature with dzVents and Pushover.
I have used the NoSound Constant, but the sound was always there.
If have found, that in the file "domoticz/dzVents/runtime/Domoticz.lua" the notification is converted to a SendCommand, but the order of the items seems to be wrong.
Maybe this is wrong, because the wikipage for the LUA commands says this:
which is a different order.
Moses123
I have tried to use the notifiction sound feature with dzVents and Pushover.
I have used the NoSound Constant, but the sound was always there.
If have found, that in the file "domoticz/dzVents/runtime/Domoticz.lua" the notification is converted to a SendCommand, but the order of the items seems to be wrong.
Code: Select all
local data = subject
.. '#' .. message
.. '#' .. tostring(priority)
.. '#' .. tostring(sound)
.. '#' .. tostring(extra)
.. '#' .. tostring(_subSystem)
self.sendCommand('SendNotification', data)
Code: Select all
commandArray['SendNotification']='subject#body#extraData#priority#sound#subsystem'
Moses123