mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-01 15:51:41 +02:00
Compare commits
1 Commits
v2023.04
...
fix/legacy
Author | SHA1 | Date | |
---|---|---|---|
e66e4a6c19
|
@ -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>
|
||||
|
Reference in New Issue
Block a user