diff --git a/react/features/base/jitsi-local-storage/setup.web.js b/react/features/base/jitsi-local-storage/setup.web.js index b8577185f..b54342e92 100644 --- a/react/features/base/jitsi-local-storage/setup.web.js +++ b/react/features/base/jitsi-local-storage/setup.web.js @@ -11,6 +11,20 @@ import logger from './logger'; declare var APP: Object; declare var config: Object; +/** + * Checks whether we are loaded in an iframe. + * + * @returns {boolean} Returns {@code true} if loaded in iframe. + * @private + */ + function _inIframe() { + try { + return window.self !== window.top; + } catch (e) { + return true; + } +} + /** * Handles changes of the fake local storage. * @@ -41,7 +55,9 @@ function shouldUseHostPageLocalStorage(urlParams) { return true; } - if (browser.isWebKitBased()) { // Webkit browsers don't persist local storage for third-party iframes. + if (browser.isWebKitBased() && _inIframe()) { + // WebKit browsers don't persist local storage for third-party iframes. + return true; }