From 8e636d7a37043f3abb209ec1c0c61c0ac6693ba4 Mon Sep 17 00:00:00 2001 From: Aviad Levy Date: Fri, 1 Nov 2024 07:48:04 +0200 Subject: [PATCH] Fixed: Telegram notification link text --- src/NzbDrone.Core/Notifications/Telegram/Telegram.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Telegram/Telegram.cs b/src/NzbDrone.Core/Notifications/Telegram/Telegram.cs index ba0c2d6dc..91b37000b 100644 --- a/src/NzbDrone.Core/Notifications/Telegram/Telegram.cs +++ b/src/NzbDrone.Core/Notifications/Telegram/Telegram.cs @@ -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}/_")); } }