mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-26 16:26:44 +03:00
Drop in_iframe and X-Frame-Options due to CSP, found while investigating #537
This commit is contained in:
parent
54107ca937
commit
97cae30a51
6 changed files with 5 additions and 12 deletions
|
|
@ -79,7 +79,7 @@ export class AppUser extends AbstractApp {
|
|||
const currentTime = Date.now();
|
||||
if (currentTime > (lastTime + interval + 1000)) {
|
||||
Remote.request('Version',
|
||||
iError => (100 < iError) && (Settings.app('inIframe') ? parent : window).location.reload(),
|
||||
iError => (100 < iError) && location.reload(),
|
||||
{ Version: Settings.app('version') }
|
||||
);
|
||||
}
|
||||
|
|
@ -211,7 +211,7 @@ export class AppUser extends AbstractApp {
|
|||
Remote.request('Logout', () => {
|
||||
const customLogoutLink = Settings.app('customLogoutLink');
|
||||
if (customLogoutLink) {
|
||||
((window.parent && Settings.app('inIframe')) ? window.parent : window).location.href = customLogoutLink;
|
||||
location.href = customLogoutLink;
|
||||
} else {
|
||||
rl.logoutReload()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue