This commit is contained in:
kaso17 2018-01-30 20:04:33 +01:00
commit 3f681060b2
2 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,8 @@
type: semi-private type: semi-private
encoding: windows-1251 encoding: windows-1251
links: links:
- https://nnm-club.me/
legacylinks:
- https://nnm-club.name/ - https://nnm-club.name/
caps: caps:

View File

@ -112,7 +112,10 @@ namespace Jackett.Indexers
foreach (var movie_item in data_items.Value<JToken>("movies")) 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(); var release = new ReleaseInfo();