instagram: lower expiry frame by 10 seconds

This commit is contained in:
wukko 2024-04-16 22:04:38 +06:00
parent 8f5642763b
commit 9d239525e1
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -27,7 +27,7 @@ async function findDtsgId(cookie) {
const token = data.match(/"dtsg":{"token":"(.*?)"/)[1];
cachedDtsg.value = token;
cachedDtsg.expiry = Date.now() + 86400000;
cachedDtsg.expiry = Date.now() + 86390000;
if (token) return token;
return false;