fix identify images

This commit is contained in:
Luke Pulverenti 2016-06-23 01:26:49 -04:00
parent 70f75f8adb
commit 82e8085747
1 changed files with 2 additions and 4 deletions

View File

@ -181,11 +181,9 @@ namespace MediaBrowser.Api
return ToOptimizedResult(result);
}
public async Task<object> Get(GetRemoteSearchImage request)
public Task<object> Get(GetRemoteSearchImage request)
{
var result = GetRemoteImage(request).ConfigureAwait(false);
return result;
return GetRemoteImage(request);
}
public void Post(ApplySearchCriteria request)