Skip to content
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

Merged
merged 1 commit into from
Feb 29, 2024
Merged

Conversation

scampower3
Copy link
Member

Update to Tvdb sdk 4.7.9.1

@@ -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

The expression 'A == false' can be simplified to '!A'.
@@ -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

The expression 'A == false' can be simplified to '!A'.
@scampower3
Copy link
Member Author

scampower3 commented Feb 28, 2024

Hey @BobSilent, can you test out this branch and see if there is any serialization problems? Didn't catch any on my end.

@BobSilent
Copy link
Contributor

Sure, will do it later and write an update here

@BobSilent
Copy link
Contributor

BobSilent commented Feb 29, 2024

Hey @BobSilent, can you test out this branch and see if there is any serialization problems? Didn't catch any on my end.

👍 This much better now, at least I did not have any issues with serialization. 🚀

@crobibero crobibero added the bug This PR or Issue describes or fixes something that isn't working label Feb 29, 2024
@crobibero crobibero merged commit a143e0c into jellyfin:master Feb 29, 2024
4 checks passed
@scampower3 scampower3 deleted the sdk-4.7.9.1 branch February 29, 2024 04:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This PR or Issue describes or fixes something that isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants