minor bugfix in login.js (preventing display of error message)

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-03-27 13:14:09 +01:00
parent c12bbb65b3
commit 313e5c522f

View File

@@ -20,7 +20,7 @@ function handleLogin(response){
} else {
response.json().then(json => {
if (json.data.release) get('release').innerHTML = new Date(json.data.release).toLocaleString();
show(json.error);
show(json.message);
});
}
}