maybe ???
All checks were successful
Deploy / trigger (push) Successful in 29s

This commit is contained in:
2026-04-20 22:05:31 +02:00
parent de24786cea
commit db001a6729

View File

@@ -23,7 +23,7 @@ async function decrypt() {
method: "POST", headers: { "Content-Type": "application/json" },
body: JSON.stringify({ ciphertext: ciphertext })
});
document.getElementById("decodedtext").value = await res.text();
document.getElementById("decodedtext").value = await res.JSON;
} catch (e) { alert("Errore di connessione!"); }
}