Fix getCurrentValue

This commit is contained in:
Ophir LOJKINE 2021-02-10 14:55:53 +01:00 committed by GitHub
parent f13bbea124
commit 16f0ccda86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ function updateLocalStorage(name, value) {
function getCurrentValue(name) {
try {
window.localStorage.getItem(name);
return window.localStorage.getItem(name);
} catch(e) {
return null;
}