-
-
Notifications
You must be signed in to change notification settings - Fork 34
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
Add Movie support #164
Conversation
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
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
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
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
No description provided.