summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
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';