Browse Source

Fix onetimelink (#1367)

* Russian translation

* fix onetime link for android tv

---------

Co-authored-by: Vadim Babadzhanyan <[email protected]>
pull/1374/head
Vadim Babadzhanyan 7 months ago
committed by GitHub
parent
commit
33b4c3859d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      src/lib/WireGuard.js

4
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();
}

Loading…
Cancel
Save