Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
Fix searching by season and better error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
darkalfx committed Oct 2, 2021
1 parent 47bbbb2 commit 72a74a8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Requestrr.WebApi/ClientApp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Requestrr.WebApi/ClientApp/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Footer extends React.Component {
<Col xl="6">
<div className="copyright text-center text-xl-left text-muted">
© {new Date().getFullYear()}{" "}
Requestrr (v1.0.24)
Requestrr (v1.0.25)
</div>
</Col>
</Row>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class AuthFooter extends React.Component {
<Col xl="6">
<div className="copyright text-center text-xl-left text-muted">
© {new Date().getFullYear()}{" "}
Requestrr (v1.0.24)
Requestrr (v1.0.25)
</div>
</Col>
</Row>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 72a74a8

Please sign in to comment.