Merge pull request #1350 from MediaBrowser/master

update MovieDbPersonProvider
This commit is contained in:
Luke 2015-12-22 11:39:00 -05:00
commit 2a3609106c

View file

@ -18,6 +18,7 @@ using System.Net;
using System.Threading;
using System.Threading.Tasks;
using CommonIO;
using MediaBrowser.Model.Net;
namespace MediaBrowser.Providers.People
{
@ -124,8 +125,20 @@ namespace MediaBrowser.Providers.People
var result = new MetadataResult<Person>();
if (!string.IsNullOrEmpty(tmdbId))
{
try
{
await EnsurePersonInfo(tmdbId, cancellationToken).ConfigureAwait(false);
}
catch (HttpException ex)
{
if (ex.StatusCode.HasValue && ex.StatusCode.Value == HttpStatusCode.NotFound)
{
return result;
}
throw;
}
var dataFilePath = GetPersonDataFilePath(_configurationManager.ApplicationPaths, tmdbId);