set default redirect allowance to 3. fixes #2796

This commit is contained in:
Sinny Supernova 2025-12-10 22:26:48 +01:00
parent fdbd077852
commit 02c0bc608f
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>