Fixed: MaM AuthorInfo Object

pull/25/head
Qstick 4 years ago
parent 9d2d308b95
commit 71e132f9a4

@ -293,15 +293,9 @@ namespace NzbDrone.Core.Indexers.Definitions
var authorInfo = item.AuthorInfo; var authorInfo = item.AuthorInfo;
var author = string.Empty; var author = string.Empty;
if (authorInfo != null) if (authorInfo != null && authorInfo.Count > 0)
{ {
try author = authorInfo.First().Value;
{
author = authorInfo.First + " " + authorInfo.Last;
}
catch (Exception)
{
}
} }
if (author != null) if (author != null)
@ -398,7 +392,7 @@ namespace NzbDrone.Core.Indexers.Definitions
public string Title { get; set; } public string Title { get; set; }
[JsonProperty(PropertyName = "author_info")] [JsonProperty(PropertyName = "author_info")]
public MyAnonamouseAuthorInfo AuthorInfo { get; set; } public Dictionary<string, string> AuthorInfo { get; set; }
[JsonProperty(PropertyName = "lang_code")] [JsonProperty(PropertyName = "lang_code")]
public string LangCode { get; set; } public string LangCode { get; set; }
@ -416,12 +410,6 @@ namespace NzbDrone.Core.Indexers.Definitions
public string Size { get; set; } public string Size { get; set; }
} }
public class MyAnonamouseAuthorInfo
{
public string First { get; set; }
public string Last { get; set; }
}
public class MyAnonamouseResponse public class MyAnonamouseResponse
{ {
public string Error { get; set; } public string Error { get; set; }

Loading…
Cancel
Save