mirror of
https://github.com/Radarr/Radarr
synced 2025-02-25 07:32:56 +00:00
Fixed: TMDB link in discord notifcation from .com to .org
Closes: #5975
This commit is contained in:
parent
f85fc5e578
commit
7ea749e93c
1 changed files with 1 additions and 1 deletions
|
@ -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())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue