mirror of https://github.com/Jackett/Jackett
Merge branch 'master' of https://github.com/Jackett/Jackett
This commit is contained in:
commit
3f681060b2
|
@ -6,6 +6,8 @@
|
|||
type: semi-private
|
||||
encoding: windows-1251
|
||||
links:
|
||||
- https://nnm-club.me/
|
||||
legacylinks:
|
||||
- https://nnm-club.name/
|
||||
|
||||
caps:
|
||||
|
|
|
@ -112,7 +112,10 @@ namespace Jackett.Indexers
|
|||
|
||||
foreach (var movie_item in data_items.Value<JToken>("movies"))
|
||||
{
|
||||
foreach (var torrent_info in movie_item.Value<JArray>("torrents"))
|
||||
var torrents = movie_item.Value<JArray>("torrents");
|
||||
if (torrents == null)
|
||||
continue;
|
||||
foreach (var torrent_info in torrents)
|
||||
{
|
||||
var release = new ReleaseInfo();
|
||||
|
||||
|
|
Loading…
Reference in New Issue