1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-24 15:21:06 +00:00

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? // Append the quality to the title because thats how radarr seems to be determining the quality?
// All releases are BRRips, see issue #2200 // 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"); var imdb = movie_item.Value<string>("imdb_code");
release.Imdb = ParseUtil.GetImdbID(imdb); release.Imdb = ParseUtil.GetImdbID(imdb);