Fixed: Add back Indexer Options

This commit is contained in:
Qstick 2019-12-14 21:40:28 -05:00
parent a23e57d9f7
commit 5e52a12287
1 changed files with 43 additions and 0 deletions

View File

@ -75,6 +75,19 @@ function IndexerOptions(props) {
/>
</FormGroup>
<FormGroup>
<FormLabel>Prefer Indexer Flags</FormLabel>
<FormInputGroup
type={inputTypes.CHECK}
name="preferIndexerFlags"
helpText="Prioritize releases with special flags"
helpLink="https://github.com/Radarr/Radarr/wiki/Indexer-Flags"
onChange={onInputChange}
{...settings.preferIndexerFlags}
/>
</FormGroup>
<FormGroup>
<FormLabel>Availability Delay</FormLabel>
@ -107,6 +120,36 @@ function IndexerOptions(props) {
{...settings.rssSyncInterval}
/>
</FormGroup>
<FormGroup
advancedSettings={advancedSettings}
isAdvanced={true}
>
<FormLabel>Whitelisted Subtitle Tags</FormLabel>
<FormInputGroup
type={inputTypes.TEXT_TAG}
name="whitelistedHardcodedSubs"
helpText="Subtitle tags set here will not be considered hardcoded"
onChange={onInputChange}
{...settings.whitelistedHardcodedSubs}
/>
</FormGroup>
<FormGroup
advancedSettings={advancedSettings}
isAdvanced={true}
>
<FormLabel>Allow Hardcoded Subs</FormLabel>
<FormInputGroup
type={inputTypes.CHECK}
name="allowHardcodedSubs"
helpText="Detected hardcoded subs will be automatically downloaded"
onChange={onInputChange}
{...settings.allowHardcodedSubs}
/>
</FormGroup>
</Form>
}
</FieldSet>