Fixed XBMC JSON requests.

This commit is contained in:
Mark McDowall 2011-09-27 10:41:36 -07:00
commit 5f0a95b2b1
3 changed files with 43 additions and 16 deletions

View file

@ -300,6 +300,12 @@ namespace NzbDrone.Core.Providers
return true;
}
if (String.IsNullOrWhiteSpace(response))
{
Logger.Debug("Invalid response from XBMC, the response is not valid JSON");
return true;
}
return false;
}