1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-23 14:41:27 +00:00

Fixed: Links for Trakt and TVMaze in Gotify notifications

This commit is contained in:
Mark McDowall 2024-09-15 18:51:06 -07:00 committed by Mark McDowall
parent 99fc52039f
commit 89d730cdfd

View file

@ -180,13 +180,13 @@ namespace NzbDrone.Core.Notifications.Gotify
if (linkType == MetadataLinkType.Trakt && series.TvdbId > 0)
{
linkText = "TVMaze";
linkText = "Trakt";
linkUrl = $"http://trakt.tv/search/tvdb/{series.TvdbId}?id_type=show";
}
if (linkType == MetadataLinkType.Tvmaze && series.TvMazeId > 0)
{
linkText = "Trakt";
linkText = "TVMaze";
linkUrl = $"http://www.tvmaze.com/shows/{series.TvMazeId}/_";
}