mirror of
https://github.com/Radarr/Radarr
synced 2025-01-19 22:21:08 +00:00
Fixed: Add back Indexer Options
This commit is contained in:
parent
a23e57d9f7
commit
5e52a12287
1 changed files with 43 additions and 0 deletions
|
@ -75,6 +75,19 @@ function IndexerOptions(props) {
|
||||||
/>
|
/>
|
||||||
</FormGroup>
|
</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>
|
<FormGroup>
|
||||||
<FormLabel>Availability Delay</FormLabel>
|
<FormLabel>Availability Delay</FormLabel>
|
||||||
|
|
||||||
|
@ -107,6 +120,36 @@ function IndexerOptions(props) {
|
||||||
{...settings.rssSyncInterval}
|
{...settings.rssSyncInterval}
|
||||||
/>
|
/>
|
||||||
</FormGroup>
|
</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>
|
</Form>
|
||||||
}
|
}
|
||||||
</FieldSet>
|
</FieldSet>
|
||||||
|
|
Loading…
Reference in a new issue