From d531caf9bf720e8deb5116632bb154ce6058a4f6 Mon Sep 17 00:00:00 2001 From: AndyHazz <517731+AndyHazz@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:19:31 +0100 Subject: [PATCH] Update Pushover.node.ts Replace duplicate Timestamp field with the missing TTL field, fix for #10984 --- packages/nodes-base/nodes/Pushover/Pushover.node.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/nodes-base/nodes/Pushover/Pushover.node.ts b/packages/nodes-base/nodes/Pushover/Pushover.node.ts index 4bde7d7e38..f842fd7cf8 100644 --- a/packages/nodes-base/nodes/Pushover/Pushover.node.ts +++ b/packages/nodes-base/nodes/Pushover/Pushover.node.ts @@ -251,12 +251,12 @@ export class Pushover implements INodeType { description: "Your message's title, otherwise your app's name is used", }, { - displayName: 'Timestamp', - name: 'timestamp', - type: 'dateTime', + displayName: 'TTL', + name: 'ttl', + type: 'number', default: '', description: - "A Unix timestamp of your message's date and time to display to the user, rather than the time your message is received by our API", + "Time to Live in seconds, after which the message will be automatically deleted from the devices it was delivered to.", }, { displayName: 'URL',