-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to Tvdb sdk 4.7.9.1 #113
Conversation
@@ -272,13 +272,13 @@ | |||
.ConfigureAwait(false); | |||
var resultData = result; | |||
|
|||
if (resultData is null || resultData.Count == 0 || resultData[0] is null || resultData[0].Series is null) | |||
if (resultData is null || resultData.Count == 0 || resultData[0] is null || resultData[0].Series is null || resultData[0].Series.Id.HasValue == false) |
Check notice
Code scanning / CodeQL
Unnecessarily complex Boolean expression Note
@@ -382,14 +382,14 @@ | |||
|
|||
Data2 seriesData = seriesResponse.Data; | |||
|
|||
if (seriesData == null || seriesData.Episodes == null || seriesData.Episodes.Count == 0) | |||
if (seriesData == null || seriesData.Episodes == null || seriesData.Episodes.Count == 0 || seriesData.Episodes[0].Id.HasValue == false) |
Check notice
Code scanning / CodeQL
Unnecessarily complex Boolean expression Note
Hey @BobSilent, can you test out this branch and see if there is any serialization problems? Didn't catch any on my end. |
Sure, will do it later and write an update here |
👍 This much better now, at least I did not have any issues with serialization. 🚀 |
Update to Tvdb sdk 4.7.9.1