PLT-4620 fix ios safari private browsing (#4526)
Этот коммит содержится в:
коммит произвёл
Christopher Speller
родитель
baf1fb6fea
Коммит
a6d6880d99
@@ -203,7 +203,11 @@ class BrowserStoreClass {
|
||||
}
|
||||
|
||||
hasSeenLandingPage() {
|
||||
return JSON.parse(sessionStorage.getItem('__landingPageSeen__'));
|
||||
if (this.isLocalStorageSupported()) {
|
||||
return JSON.parse(sessionStorage.getItem('__landingPageSeen__'));
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
setLandingPageSeen(landingPageSeen) {
|
||||
|
||||
Ссылка в новой задаче
Block a user