Update Pushover.node.ts

Replace duplicate Timestamp field with the missing TTL field, fix for #10984
This commit is contained in:
AndyHazz 2024-10-16 20:19:31 +01:00 committed by GitHub
parent 5c370c9235
commit d531caf9bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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',