Compare commits

..

4 Commits

2 changed files with 6 additions and 2 deletions

View File

@ -169,7 +169,11 @@
}
function getOwnedEntries() {
return JSON.parse(localStorage.getItem("ownedEntries"))
var entries = JSON.parse(localStorage.getItem("ownedEntries"))
if (entries == null) {
entries = []
}
return entries;
}
</script>

View File

@ -6,7 +6,7 @@ secrets:
services:
karaoqueue:
image: "ghcr.io/phoenixtwofive/karaoqueue:v2023.04"
image: "ghcr.io/phoenixtwofive/karaoqueue:v2023.04.1"
build: .
restart: always
ports: