mirror of
https://github.com/Radarr/Radarr
synced 2026-01-05 07:03:46 +01:00
Fix typos and improve log messages
This commit is contained in:
parent
5898eea3d0
commit
c278ffd8a0
4 changed files with 4 additions and 4 deletions
|
|
@ -100,7 +100,7 @@ public List<AlternativeTitle> UpdateTitles(List<AlternativeTitle> titles, MovieM
|
|||
|
||||
public void HandleAsync(MoviesDeletedEvent message)
|
||||
{
|
||||
// TODO hanlde metadata delete instead of movie delete
|
||||
// TODO handle metadata delete instead of movie delete
|
||||
_titleRepo.DeleteForMovies(message.Movies.Select(m => m.MovieMetadataId).ToList());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ public List<MovieTranslation> UpdateTranslations(List<MovieTranslation> translat
|
|||
|
||||
public void HandleAsync(MoviesDeletedEvent message)
|
||||
{
|
||||
// TODO hanlde metadata delete instead of movie delete
|
||||
// TODO handle metadata delete instead of movie delete
|
||||
_translationRepo.DeleteForMovies(message.Movies.Select(m => m.MovieMetadataId).ToList());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ public void SendNotification(string title, string message, MailgunSettings setti
|
|||
{
|
||||
if (ex.Response.StatusCode == HttpStatusCode.Unauthorized)
|
||||
{
|
||||
_logger.Error("Unathorized - ApiKey is invalid");
|
||||
_logger.Error("Unauthorized - ApiKey is invalid");
|
||||
throw new MailgunException("Unauthorized - ApiKey is invalid");
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ public virtual TProviderResource ToResource(TProviderDefinition definition)
|
|||
Tags = definition.Tags,
|
||||
Fields = SchemaBuilder.ToSchema(definition.Settings),
|
||||
|
||||
// radarr/supported is an disambagation page. the # should be a header on the page with appropiate details/link
|
||||
// radarr/supported is an disambiguation page. the # should be a header on the page with appropriate details/link
|
||||
InfoLink = string.Format("https://wiki.servarr.com/radarr/supported#{0}",
|
||||
definition.Implementation.ToLower())
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue