hdtorrents: add imdb selector for #4859

This commit is contained in:
Garfield69
2019-03-13 09:15:16 +13:00
parent f2c7de0845
commit 18ed7c88fb

View File

@@ -216,6 +216,9 @@ namespace Jackett.Common.Indexers
else
release.DownloadVolumeFactor = 1;
var imdblink = qRow.Find("a[href^=\"https://www.imdb.com/title/\"]").Attr("href");
release.Imdb = ParseUtil.GetLongFromString(imdblink);
releases.Add(release);
}
}