1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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

View File

@ -301,7 +301,7 @@ private static string BytesToString(long byteCount)
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())
{