notify user about wrong skin/cape format

This commit is contained in:
leca 2025-02-19 17:39:03 +03:00
parent f393496a1b
commit 020a2ae815
1 changed files with 8 additions and 5 deletions

View File

@ -10,12 +10,14 @@ const uploadSkin = async (event) => {
let formData = new FormData();
formData.append("file", skinFile);
await fetch(`/api/uploadSkin`, {
const response = await fetch(`/api/uploadSkin`, {
method: "POST",
body: formData
})
window.location = window.location.href+'?eraseCache=true';
if (response.status != 200) {
alert(await response.text())
}
}
const uploadCape = async (event) => {
@ -30,14 +32,15 @@ const uploadCape = async (event) => {
let formData = new FormData();
formData.append("file", capeFile);
await fetch(`/api/uploadCape`, {
const response = await fetch(`/api/uploadCape`, {
method: "POST",
body: formData
})
window.location = window.location.href+'?eraseCache=true';
if (response.status != 200) {
alert(await response.text())
}
}
window.onload = async function() {
document.getElementById("skinForm").addEventListener("submit", uploadSkin)