diff --git a/src/popup/settings/settings.component.ts b/src/popup/settings/settings.component.ts index e54d33d9da..15d4cdc515 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');