Add missing url and url_title options

to close #1117
This commit is contained in:
Dave Conway-Jones
2025-12-24 14:15:56 +00:00
parent 0e315f1fab
commit 3ca8805888
2 changed files with 3 additions and 1 deletions

View File

@@ -12,6 +12,8 @@ module.exports = function(RED) {
this.priority = n.priority;
this.sound = n.sound;
this.html = n.html;
this.url = n.url;
this.url_title = n.url_title;
if (this.sound === '') { this.sound = null; }
var credentials = this.credentials;
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }

View File

@@ -1,6 +1,6 @@
{
"name": "node-red-node-pushover",
"version": "0.3.0",
"version": "0.3.1",
"description": "A Node-RED node to send alerts via Pushover",
"dependencies": {
"pushover-notifications": "^1.2.3"