From 89d730cdfdf44ad738ce77c90d3290cde67ba6a1 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 15 Sep 2024 18:51:06 -0700 Subject: [PATCH] Fixed: Links for Trakt and TVMaze in Gotify notifications --- src/NzbDrone.Core/Notifications/Gotify/Gotify.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs b/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs index 83b3568bd..251c0da76 100644 --- a/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs +++ b/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs @@ -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}/_"; }