1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

Fixed an issue where sometimes the json returned from IMDb just was not parsed correctly for some misterious reason.

This commit is contained in:
Leonardo Galli
2017-01-04 15:01:34 +01:00
parent b47d5f7fa1
commit 6e2ded5d33
4 changed files with 32 additions and 3 deletions
@@ -0,0 +1,21 @@
using System.Collections.Generic;
namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
{
public class ImdbResource
{
public int v { get; set; }
public string q { get; set; }
public MovieResource[] d { get; set; }
}
public class MovieResource
{
public string l { get; set; }
public string id { get; set; }
public string s { get; set; }
public int y { get; set; }
public string q { get; set; }
public object[] i { get; set; }
}
}