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