diff --git a/config.example.toml b/config.example.toml index bd8bed95..6e2f030f 100644 --- a/config.example.toml +++ b/config.example.toml @@ -75,7 +75,7 @@ Password = "CHANGE_ME" # Toggle whether to manage the Servarr instance torrents. Managed = true -# The URL used to access Servarr interface (if you use a domain enter the domain without a port) +# The URL used to access Servarr interface eg. http://ip:port (if you use a domain enter the domain without a port) URI = "CHANGE_ME" # The Servarr API Key, Can be found it Settings > General > Security @@ -159,7 +159,7 @@ PrioritizeTodaysReleases = true # Search Ombi for pending requests (Will only work if 'SearchMissing' is enabled.) SearchOmbiRequests = false -# Ombi URI (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances) +# Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances) OmbiURI = "CHANGE_ME" # Ombi's API Key @@ -174,7 +174,7 @@ ApprovedOnly = true # If this and Ombi are both enable, Ombi will be ignored SearchOverseerrRequests = false -# Overseerr's URI +# Overseerr's URI eg. http://ip:port OverseerrURI = "CHANGE_ME" # Overseerr's API Key @@ -278,7 +278,7 @@ AddTags = ["qBitrr-anime"] # Toggle whether to manage the Servarr instance torrents. Managed = true -# The URL used to access Servarr interface (if you use a domain enter the domain without a port) +# The URL used to access Servarr interface eg. http://ip:port (if you use a domain enter the domain without a port) URI = "CHANGE_ME" # The Servarr API Key, Can be found it Settings > General > Security @@ -362,7 +362,7 @@ PrioritizeTodaysReleases = true # Search Ombi for pending requests (Will only work if 'SearchMissing' is enabled.) SearchOmbiRequests = false -# Ombi URI (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances) +# Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances) OmbiURI = "CHANGE_ME" # Ombi's API Key @@ -377,7 +377,7 @@ ApprovedOnly = true # If this and Ombi are both enable, Ombi will be ignored SearchOverseerrRequests = false -# Overseerr's URI +# Overseerr's URI eg. http://ip:port OverseerrURI = "CHANGE_ME" # Overseerr's API Key @@ -481,7 +481,7 @@ AddTags = ["qBitrr-anime"] # Toggle whether to manage the Servarr instance torrents. Managed = true -# The URL used to access Servarr interface (if you use a domain enter the domain without a port) +# The URL used to access Servarr interface eg. http://ip:port (if you use a domain enter the domain without a port) URI = "CHANGE_ME" # The Servarr API Key, Can be found it Settings > General > Security @@ -561,7 +561,7 @@ TempQualityProfile = "CHANGE_ME" # Search Ombi for pending requests (Will only work if 'SearchMissing' is enabled.) SearchOmbiRequests = false -# Ombi URI (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances) +# Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances) OmbiURI = "CHANGE_ME" # Ombi's API Key @@ -576,7 +576,7 @@ ApprovedOnly = true # If this and Ombi are both enable, Ombi will be ignored SearchOverseerrRequests = false -# Overseerr's URI +# Overseerr's URI eg. http://ip:port OverseerrURI = "CHANGE_ME" # Overseerr's API Key @@ -693,7 +693,7 @@ SuperSeedMode = false # Toggle whether to manage the Servarr instance torrents. Managed = true -# The URL used to access Servarr interface (if you use a domain enter the domain without a port) +# The URL used to access Servarr interface eg. http://ip:port (if you use a domain enter the domain without a port) URI = "CHANGE_ME" # The Servarr API Key, Can be found it Settings > General > Security @@ -773,7 +773,7 @@ TempQualityProfile = "CHANGE_ME" # Search Ombi for pending requests (Will only work if 'SearchMissing' is enabled.) SearchOmbiRequests = false -# Ombi URI (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances) +# Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances) OmbiURI = "CHANGE_ME" # Ombi's API Key @@ -788,7 +788,7 @@ ApprovedOnly = true # If this and Ombi are both enable, Ombi will be ignored SearchOverseerrRequests = false -# Overseerr's URI +# Overseerr's URI eg. http://ip:port OverseerrURI = "CHANGE_ME" # Overseerr's API Key diff --git a/qBitrr/arss.py b/qBitrr/arss.py index 7e208349..25a8c129 100755 --- a/qBitrr/arss.py +++ b/qBitrr/arss.py @@ -2677,10 +2677,11 @@ def db_update_single_series( requests.exceptions.ContentDecodingError, requests.exceptions.ConnectionError, JSONDecodeError, + KeyError, ): completed = True - except KeyError: - self.logger.warning("Key Error [%s]", db_entry["id"]) + # except KeyError: + # self.logger.warning("Key Error [%s]", db_entry["id"]) QualityUnmet = ( db_entry["episodeFile"]["qualityCutoffNotMet"] if "episodeFile" in db_entry diff --git a/qBitrr/gen_config.py b/qBitrr/gen_config.py index 0d9e1015..08b5846f 100755 --- a/qBitrr/gen_config.py +++ b/qBitrr/gen_config.py @@ -184,7 +184,7 @@ def _gen_default_cat(category: str, config: TOMLDocument): ) _gen_default_line( cat_default, - "The URL used to access Servarr interface " + "The URL used to access Servarr interface eg. http://ip:port" "(if you use a domain enter the domain without a port)", "URI", "CHANGE_ME", @@ -665,7 +665,7 @@ def _gen_default_ombi_table(category: str, search_table: Table): ) _gen_default_line( ombi_table, - "Ombi URI (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances)", + "Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances)", "OmbiURI", "CHANGE_ME", ) @@ -685,7 +685,9 @@ def _gen_default_overseerr_table(category: str, search_table: Table): "SearchOverseerrRequests", False, ) - _gen_default_line(overseerr_table, "Overseerr's URI", "OverseerrURI", "CHANGE_ME") + _gen_default_line( + overseerr_table, "Overseerr's URI eg. http://ip:port", "OverseerrURI", "CHANGE_ME" + ) _gen_default_line(overseerr_table, "Overseerr's API Key", "OverseerrAPIKey", "CHANGE_ME") _gen_default_line(overseerr_table, "Only process approved requests", "ApprovedOnly", True) overseerr_table.add(comment("Only for 4K Instances"))