mirror of https://github.com/keeweb/keeweb
fix #1715: storage authentication in Epiphany browser
parent
b9a5c64113
commit
be4be0e7e8
|
@ -1,6 +1,5 @@
|
|||
import { Events } from 'framework/events';
|
||||
import { Launcher } from 'comp/launcher';
|
||||
import { Features } from 'util/features';
|
||||
import { Alerts } from 'comp/ui/alerts';
|
||||
import { Timeouts } from 'const/timeouts';
|
||||
import { Locale } from 'util/locale';
|
||||
|
@ -46,15 +45,13 @@ const PopupNotifier = {
|
|||
Timeouts.CheckWindowClosed
|
||||
);
|
||||
} else {
|
||||
if (Features.isiOS) {
|
||||
const loc = PopupNotifier.tryGetLocationSearch(win);
|
||||
if (loc) {
|
||||
try {
|
||||
win.close();
|
||||
} catch {}
|
||||
PopupNotifier.triggerClosed(win, loc);
|
||||
return;
|
||||
}
|
||||
const loc = PopupNotifier.tryGetLocationSearch(win);
|
||||
if (loc) {
|
||||
try {
|
||||
win.close();
|
||||
} catch {}
|
||||
PopupNotifier.triggerClosed(win, loc);
|
||||
return;
|
||||
}
|
||||
PopupNotifier.deferCheckClosed(win);
|
||||
}
|
||||
|
|
|
@ -18,6 +18,8 @@ Release notes
|
|||
##### v1.16.8 (TBD)
|
||||
`-` fix #1726: search in protected fields
|
||||
`-` fix #1713: OneDrive authentication on web
|
||||
`-` fix #1715: storage authentication in Epiphany browser
|
||||
`-` fix #1711: storage authentication in iOS
|
||||
|
||||
##### v1.16.7 (2020-12-31)
|
||||
`-` fix #1671: new lines removal issue in notes
|
||||
|
|
Loading…
Reference in New Issue