1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-24 15:21:06 +00:00
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
encoding: windows-1251
links:
- https://nnm-club.me/
legacylinks:
- https://nnm-club.name/
caps:

View file

@ -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();