From 33b4c3859df274240374602ec3250aec32664d75 Mon Sep 17 00:00:00 2001 From: Vadim Babadzhanyan Date: Sat, 7 Sep 2024 09:43:59 +0300 Subject: [PATCH] Fix onetimelink (#1367) * Russian translation * fix onetime link for android tv --------- Co-authored-by: Vadim Babadzhanyan --- src/lib/WireGuard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/WireGuard.js b/src/lib/WireGuard.js index 1aaed9a..8ce325f 100644 --- a/src/lib/WireGuard.js +++ b/src/lib/WireGuard.js @@ -321,8 +321,8 @@ Endpoint = ${WG_HOST}:${WG_CONFIG_PORT}`; async eraseOneTimeLink({ clientId }) { const client = await this.getClient({ clientId }); - client.oneTimeLink = null; - client.oneTimeLinkExpiresAt = null; + // client.oneTimeLink = null; + client.oneTimeLinkExpiresAt = new Date(Date.now() + 10 * 1000); client.updatedAt = new Date(); await this.saveConfig(); }