updated error message when lb load failed, and hiding the loader bar. fixes #850

This commit is contained in:
Miodec 2021-01-17 16:51:02 +00:00
parent 09ce32222c
commit 15c7b3a30c

View file

@ -217,7 +217,8 @@ function updateLeaderboards() {
}
})
.catch((e) => {
Notifications.add("Something went wrong", -1);
hideBackgroundLoader();
Notifications.add("Something went wrong: " + e.message, -1);
});
}