mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
This commit is contained in:
@@ -149,8 +149,18 @@ namespace Jackett.Common.Indexers
|
|||||||
var release = new ReleaseInfo();
|
var release = new ReleaseInfo();
|
||||||
|
|
||||||
// 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
|
// append type: BRRip or WEBRip, resolves #3558 via #4577
|
||||||
release.Title = "[YTS] " + movie_item.Value<string>("title_long") + " " + torrent_info.Value<string>("quality") + " BRRip";
|
var type = torrent_info.Value<string>("type");
|
||||||
|
switch (type)
|
||||||
|
{
|
||||||
|
case "web":
|
||||||
|
type = " WEBRip";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
type = " BRRip";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
release.Title = "[YTS] " + movie_item.Value<string>("title_long") + " " + torrent_info.Value<string>("quality") + type;
|
||||||
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);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user