Fix getCurrentValue

This commit is contained in:
Ophir LOJKINE
2021-02-10 14:55:53 +01:00
committed by GitHub
parent f13bbea124
commit 16f0ccda86
+1 -1
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;
}