FIX: if localStorage is disabled, still boot
This commit is contained in:
parent
aa81261875
commit
f6c6f6e7a1
|
@ -10,9 +10,13 @@
|
||||||
var safeLocalStorage;
|
var safeLocalStorage;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
safeLocalStorage = localStorage;
|
safeLocalStorage = localStorage;
|
||||||
|
if (localStorage["disableLocalStorage"] === "true") {
|
||||||
|
safeLocalStorage = null;
|
||||||
|
}
|
||||||
} catch(e){
|
} catch(e){
|
||||||
// cookies disabled, we don't care
|
// cookies disabled, we don't care
|
||||||
|
safeLocalStorage = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
Discourse.KeyValueStore = {
|
Discourse.KeyValueStore = {
|
||||||
|
|
Loading…
Reference in New Issue