Update yts.cs (#3962) resolves #3182

add [YTS] in front of movie name
This commit is contained in:
xfouloux
2018-10-11 13:40:59 +11:00
committed by garfield69
parent 10ae5e9d5d
commit da638ad712

View File

@@ -142,7 +142,7 @@ namespace Jackett.Common.Indexers
// Append the quality to the title because thats how radarr seems to be determining the quality?
// All releases are BRRips, see issue #2200
release.Title = movie_item.Value<string>("title_long") + " " + torrent_info.Value<string>("quality") + " BRRip";
release.Title = "[YTS] " + movie_item.Value<string>("title_long") + " " + torrent_info.Value<string>("quality") + " BRRip";
var imdb = movie_item.Value<string>("imdb_code");
release.Imdb = ParseUtil.GetImdbID(imdb);