update refresh URLS

This commit is contained in:
MathMan05
2025-09-26 18:46:42 -05:00
parent 039a9aab74
commit 3945ea90d4
+3 -1
View File
@@ -131,7 +131,9 @@ class File {
if (Number.parseInt(urlObj.searchParams.get("ex") || "", 16) >= Date.now() - 5000) {
return;
}
return this.owner.localuser.refreshURL(url);
const newUrl = this.owner.localuser.refreshURL(url);
newUrl.then((_) => (this.proxy_url = _));
return newUrl;
}
}
private getAudioHTML(url: Promise<string> | void) {