fix error caused by shorten url using http instead of https

This commit is contained in:
sevi-py
2025-06-22 17:29:51 +02:00
parent 66d6c17306
commit 2c2e43330b

View File

@@ -206,7 +206,7 @@ export default function App() {
const { iv, encrypted } = await encryptUrl(encryptionKey, url);
// Send to server
await axios.post("http://tnyr.me/shorten", {
await axios.post("https://tnyr.me/shorten", {
LOOKUP_HASH: arrayToHex(lookupKey),
ENCRYTION_SALT: arrayToHex(encryptionSalt),
IV: arrayToHex(iv),