Don't error out if PMS returns no ID for a specific series

Closes #813
This commit is contained in:
Mark McDowall 2015-10-04 12:12:07 -07:00
parent 9ffa28f17c
commit 68cd9ab8c8
1 changed files with 4 additions and 5 deletions

View File

@ -107,16 +107,15 @@ namespace NzbDrone.Core.Notifications.Plex
_logger.Trace("Sections response: {0}", response.Content); _logger.Trace("Sections response: {0}", response.Content);
CheckForError(response, settings); CheckForError(response, settings);
var item = Json.Deserialize<PlexSectionResponse>(response.Content) var items = Json.Deserialize<PlexSectionResponse>(response.Content)
.Items .Items;
.FirstOrDefault();
if (item == null) if (items == null || items.Empty())
{ {
return null; return null;
} }
return item.Id; return items.First().Id;
} }
private string Authenticate(PlexServerSettings settings) private string Authenticate(PlexServerSettings settings)