summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorLyssa2026-02-09 16:46:50 +0000
committerLyssa2026-02-09 16:46:50 +0000
commit0e82d47f233e6804a77d02304db0accbf9aed417 (patch)
treea9c326e9bf7a0fc5971989d4a78dcd2b17b8a054 /static
parent0909d4341a2c2bfd0b9d42b7fcadafd40b54f944 (diff)
downloadmassgrave.dev-0e82d47f233e6804a77d02304db0accbf9aed417.zip
Rename the drive .htmlHEADmaindev
Diffstat (limited to 'static')
-rw-r--r--static/drive.html (renamed from static/redirect.html)3
1 files changed, 2 insertions, 1 deletions
diff --git a/static/redirect.html b/static/drive.html
index 133bbd9..c6c405d 100644
--- a/static/redirect.html
+++ b/static/drive.html
@@ -29,7 +29,8 @@
document.title = filename + ' | MASSGRAVE Drive';
document.getElementById('file-title').textContent = '💾 ' + filename;
- const downloadUrl = 'https://archive.isdn.network/windows/' + encodeURIComponent(filename);
+ const baseUrl = atob('aHR0cHM6Ly9hcmNoaXZlLmlzZG4ubmV0d29yay93aW5kb3dzLw');
+ const downloadUrl = baseUrl + encodeURIComponent(filename)
document.getElementById('download-form').action = downloadUrl;
} else {
document.getElementById('file-title').textContent = '💾 No file specified';