From bf585ca802186738e41052bff4440532e6963009 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 1 Nov 2024 19:50:18 -0400 Subject: [PATCH] Remove duplicate download --- web/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/web/index.html b/web/index.html index 7adb26a..0c0e249 100644 --- a/web/index.html +++ b/web/index.html @@ -11,7 +11,6 @@ init().then(() => { archive_character_base64(document.getElementById("name").value, document.getElementById("scales").checked).then((uri) => { // Download character archive - window.location.replace(uri); var link = document.createElement('a'); link.download = document.getElementById("name").value + ".zip"; link.href = uri;