From 789e79fca66aaaef820a8f76672204442ae62dbd Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 3 Oct 2018 22:49:59 -0400 Subject: [PATCH] dont show never lock warning on safari --- src/popup/settings/settings.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/settings/settings.component.ts b/src/popup/settings/settings.component.ts index e54d33d9da1..15d4cdc515a 100644 --- a/src/popup/settings/settings.component.ts +++ b/src/popup/settings/settings.component.ts @@ -87,7 +87,7 @@ export class SettingsComponent implements OnInit { } async saveLockOption(newValue: number) { - if (newValue == null) { + if (newValue == null && !this.platformUtilsService.isSafari()) { const confirmed = await this.platformUtilsService.showDialog( this.i18nService.t('neverLockWarning'), null, this.i18nService.t('yes'), this.i18nService.t('cancel'), 'warning');