mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-01 09:10:50 +02:00
Fixed: Handle cases where MAM author info converts null
This commit is contained in:
parent
e0fc7e3237
commit
4fd6924628
1 changed files with 1 additions and 1 deletions
|
|
@ -296,7 +296,7 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
|
|||
if (item.AuthorInfo != null)
|
||||
{
|
||||
var authorInfo = JsonConvert.DeserializeObject<Dictionary<string, string>>(item.AuthorInfo);
|
||||
author = authorInfo.First().Value;
|
||||
author = authorInfo?.First().Value;
|
||||
}
|
||||
|
||||
if (author != null)
|
||||
|
|
|
|||
Loading…
Reference in a new issue