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

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;