1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-11 06:33:32 +00:00

Fixed: Telegram notification link text

This commit is contained in:
Aviad Levy 2024-11-01 07:48:04 +02:00 committed by Mark McDowall
parent 38c0135d7c
commit 8e636d7a37

View file

@ -128,12 +128,12 @@ namespace NzbDrone.Core.Notifications.Telegram
if (linkType == MetadataLinkType.Trakt && series.TvdbId > 0)
{
links.Add(new TelegramLink("TVMaze", $"http://trakt.tv/search/tvdb/{series.TvdbId}?id_type=show"));
links.Add(new TelegramLink("Trakt", $"http://trakt.tv/search/tvdb/{series.TvdbId}?id_type=show"));
}
if (linkType == MetadataLinkType.Tvmaze && series.TvMazeId > 0)
{
links.Add(new TelegramLink("Trakt", $"http://www.tvmaze.com/shows/{series.TvMazeId}/_"));
links.Add(new TelegramLink("TVMaze", $"http://www.tvmaze.com/shows/{series.TvMazeId}/_"));
}
}