diff --git a/social/pushover/57-pushover.js b/social/pushover/57-pushover.js index 5520dc07..3e0fe3d0 100644 --- a/social/pushover/57-pushover.js +++ b/social/pushover/57-pushover.js @@ -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; } diff --git a/social/pushover/package.json b/social/pushover/package.json index 39f97b04..d64e7850 100644 --- a/social/pushover/package.json +++ b/social/pushover/package.json @@ -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"