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

Add Movie support #164

Merged
merged 9 commits into from
Jul 16, 2024
Merged

Add Movie support #164

merged 9 commits into from
Jul 16, 2024

Conversation

scampower3
Copy link
Member

No description provided.

@scampower3 scampower3 added the major-feature This PR introduces a major new feature label Jul 15, 2024
Comment on lines +139 to +143
catch (Exception e)
{
_logger.LogError(e, "Failed to retrieve movie with id {TvdbId}:{MovieName}", tvdbId, movieInfo.Name);
return Array.Empty<RemoteSearchResult>();
}

Check notice

Code scanning / CodeQL

Generic catch clause Note

Generic catch clause.
Comment on lines +222 to +226
catch (Exception e)
{
_logger.LogError(e, "No movie results found for {Name}", comparableName);
return new List<RemoteSearchResult>();
}

Check notice

Code scanning / CodeQL

Generic catch clause Note

Generic catch clause.
Comment on lines +275 to +278
catch (Exception e)
{
_logger.LogError(e, "Unable to retrieve movie with id {TvdbId}:{MovieName}", movieSearchResult.Tvdb_id, movieSearchResult.Name);
}

Check notice

Code scanning / CodeQL

Generic catch clause Note

Generic catch clause.
Comment on lines +380 to +384
catch (Exception e)
{
_logger.LogError(e, "Failed to retrieve movie with id {TvdbId}:{MovieName}", tvdbId, movieInfo.Name);
return;
}

Check notice

Code scanning / CodeQL

Generic catch clause Note

Generic catch clause.
@scampower3 scampower3 marked this pull request as ready for review July 15, 2024 17:07
@crobibero crobibero merged commit d2e76ba into jellyfin:master Jul 16, 2024
4 checks passed
@scampower3 scampower3 linked an issue Jul 16, 2024 that may be closed by this pull request
@scampower3 scampower3 deleted the movie-support branch July 16, 2024 15:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
major-feature This PR introduces a major new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

TVDB not working with movies category
2 participants