diff --git a/Requestrr.WebApi/ClientApp/package-lock.json b/Requestrr.WebApi/ClientApp/package-lock.json index afa4b05e..04811d60 100644 --- a/Requestrr.WebApi/ClientApp/package-lock.json +++ b/Requestrr.WebApi/ClientApp/package-lock.json @@ -1,6 +1,6 @@ { "name": "Requestrr", - "version": "1.0.24", + "version": "1.0.25", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/Requestrr.WebApi/ClientApp/package.json b/Requestrr.WebApi/ClientApp/package.json index 04cb6290..27a23df6 100644 --- a/Requestrr.WebApi/ClientApp/package.json +++ b/Requestrr.WebApi/ClientApp/package.json @@ -1,6 +1,6 @@ { "name": "Requestrr", - "version": "1.0.24", + "version": "1.0.25", "description": "Requestrr is a server designed to faciliate the request of media through chat applications.", "main": "index.js", "author": "Darkalfx", diff --git a/Requestrr.WebApi/ClientApp/src/components/Footers/AdminFooter.jsx b/Requestrr.WebApi/ClientApp/src/components/Footers/AdminFooter.jsx index 8f0f6bd2..5bbf293f 100644 --- a/Requestrr.WebApi/ClientApp/src/components/Footers/AdminFooter.jsx +++ b/Requestrr.WebApi/ClientApp/src/components/Footers/AdminFooter.jsx @@ -29,7 +29,7 @@ class Footer extends React.Component {
© {new Date().getFullYear()}{" "} - Requestrr (v1.0.24) + Requestrr (v1.0.25)
diff --git a/Requestrr.WebApi/ClientApp/src/components/Footers/AuthFooter.jsx b/Requestrr.WebApi/ClientApp/src/components/Footers/AuthFooter.jsx index 8b69bbe3..638358e9 100644 --- a/Requestrr.WebApi/ClientApp/src/components/Footers/AuthFooter.jsx +++ b/Requestrr.WebApi/ClientApp/src/components/Footers/AuthFooter.jsx @@ -31,7 +31,7 @@ class AuthFooter extends React.Component {
© {new Date().getFullYear()}{" "} - Requestrr (v1.0.24) + Requestrr (v1.0.25)
diff --git a/Requestrr.WebApi/RequestrrBot/DownloadClients/Sonarr/SonarrClientV2.cs b/Requestrr.WebApi/RequestrrBot/DownloadClients/Sonarr/SonarrClientV2.cs index ff226aee..d74c8237 100644 --- a/Requestrr.WebApi/RequestrrBot/DownloadClients/Sonarr/SonarrClientV2.cs +++ b/Requestrr.WebApi/RequestrrBot/DownloadClients/Sonarr/SonarrClientV2.cs @@ -424,8 +424,10 @@ await Task.WhenAll(seasons.Select(async s => { name = "SeasonSearch", seasonNumber = s.SeasonNumber, - seriesId = sonarrSeries.DownloadClientId + seriesId = tvShow.DownloadClientId })); + + await response.ThrowIfNotSuccessfulAsync("SonarrSeasonSearchCommand failed", x => x.error); } else { diff --git a/Requestrr.WebApi/RequestrrBot/DownloadClients/Sonarr/SonarrClientV3.cs b/Requestrr.WebApi/RequestrrBot/DownloadClients/Sonarr/SonarrClientV3.cs index 8a7b25e9..53d20ce1 100644 --- a/Requestrr.WebApi/RequestrrBot/DownloadClients/Sonarr/SonarrClientV3.cs +++ b/Requestrr.WebApi/RequestrrBot/DownloadClients/Sonarr/SonarrClientV3.cs @@ -422,8 +422,10 @@ await Task.WhenAll(seasons.Select(async s => { name = "SeasonSearch", seasonNumber = s.SeasonNumber, - seriesId = sonarrSeries.DownloadClientId + seriesId = tvShow.DownloadClientId })); + + await response.ThrowIfNotSuccessfulAsync("SonarrSeasonSearchCommand failed", x => x.error); } else {