import React, { FunctionComponent, useCallback } from "react"; import { InputGroup } from "react-bootstrap"; import { Check, Chips, CollapseBox, Group, Input, Message, Selector, SettingsProvider, Slider, Text, URLTestButton, } from "../components"; import { PathMappingTable } from "../components/pathMapper"; import { seriesEnabledKey } from "../keys"; import { seriesTypeOptions } from "../options"; interface Props {} const SettingsSonarrView: FunctionComponent = () => { const baseUrlOverride = useCallback((settings: Settings) => { return settings.sonarr.base_url?.slice(1) ?? ""; }, []); return ( Hostname or IPv4 Address / "/" + v} > Episodes from series with those tags (case sensitive) in Sonarr will be excluded from automatic download of subtitles. Episodes from series with those types in Sonarr will be excluded from automatic download of subtitles. Automatic download of subtitles will only happen for monitored episodes in Sonarr. Episodes from season zero (extras) from automatic download of subtitles. ); }; export default SettingsSonarrView;