Changed error message

This commit is contained in:
Kristy Fournier 2025-03-03 10:17:42 -05:00
parent 072d04930a
commit 44fcd881fc

View file

@ -23,7 +23,7 @@ async function getFromServer(bodyInfo, source="") {
return await data; return await data;
} catch(e) { } catch(e) {
if (e == "TypeError: Failed to fetch"){ if (e == "TypeError: Failed to fetch"){
alertText("error: NoConnect to Server (is the ip set?)") alertText("error: Can't Connect to Server (is the ip set?)")
} else { } else {
alertText("error: " + e) alertText("error: " + e)
} }