Skip to content

Commit abb7cfe

Browse files
Merge pull request #59882 from nextcloud/backport/59875/stable33
[stable33] fix(webhook-listeners): hour lifetime of tokens
2 parents 55fb75d + a7a7781 commit abb7cfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/webhook_listeners/lib/Db/EphemeralTokenMapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
class EphemeralTokenMapper extends QBMapper {
2727
public const TABLE_NAME = 'webhook_tokens';
28-
public const TOKEN_LIFETIME = 1 * 1 * 60; // one hour in seconds
28+
public const TOKEN_LIFETIME = 1 * 60 * 60; // one hour in seconds
2929

3030
public function __construct(
3131
IDBConnection $db,

0 commit comments

Comments
 (0)