mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
Fixed: Error with CP Import when no info is present. Fixes #1792
This commit is contained in:
@@ -43,7 +43,7 @@ namespace NzbDrone.Core.NetImport.CouchPotato
|
||||
|
||||
foreach (var item in responseData)
|
||||
{
|
||||
int tmdbid = item.info.tmdb_id ?? 0;
|
||||
int tmdbid = item.info?.tmdb_id ?? 0;
|
||||
|
||||
// Fix weird error reported by Madmanali93
|
||||
if (item.type != null && item.releases != null)
|
||||
|
||||
Reference in New Issue
Block a user