Set default redirect allowance to 3. fixes #2796 (#2797)

This commit is contained in:
SinnySupernova 2025-12-12 14:41:06 +00:00 committed by GitHub
parent 5dcc3c93d0
commit abba71e419
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ const defaultSettings = {
downloadFaviconAfterSave: false,
passkeys: false,
passkeysFallback: true,
redirectAllowance: 1,
redirectAllowance: 3,
saveDomainOnly: true,
showGettingStartedGuideAlert: true,
showGroupNameInAutocomplete: true,

View file

@ -352,8 +352,8 @@
<!-- Number of allowed redirects -->
<div class="form-group w-50 pb-2">
<label id="redirectAllowanceLabel" class="font-weight-normal" for="redirectAllowance" data-i18n="optionsRedirectAllowance" data-i18n-placeholder="1"></label>
<input type="range" class="form-range" id="redirectAllowance" name="redirectAllowance" min="1" max="11" step="1" value="1">
<label id="redirectAllowanceLabel" class="font-weight-normal" for="redirectAllowance" data-i18n="optionsRedirectAllowance" data-i18n-placeholder="3"></label>
<input type="range" class="form-range" id="redirectAllowance" name="redirectAllowance" min="1" max="11" step="1" value="3">
<div class="form-text help-text" data-i18n="optionsRedirectAllowanceHelpText"></div>
</div>