Fixed: TMDB link in discord notifcation from .com to .org

Closes: #5975
This commit is contained in:
bakerboy448 2021-02-26 08:04:29 -06:00 committed by Qstick
parent f85fc5e578
commit 7ea749e93c
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ namespace NzbDrone.Core.Notifications.Discord
private static string GetLinksString(Movie movie)
{
var links = string.Format("[{0}]({1})", "TMDb", $"https://themoviedb.com/movie/{movie.TmdbId}");
var links = string.Format("[{0}]({1})", "TMDb", $"https://themoviedb.org/movie/{movie.TmdbId}");
links += string.Format(" / [{0}]({1})", "Trakt", $"https://trakt.tv/search/tmdb/{movie.TmdbId}?id_type=movie");
if (movie.ImdbId.IsNotNullOrWhiteSpace())
{