go directly to music brainz

pull/702/head
Luke Pulverenti 11 years ago
parent 15663a0858
commit b1f0addc6c

@ -783,6 +783,9 @@ namespace MediaBrowser.Api.Images
imageIndex = entity.BackdropImagePaths.Count;
}
// Handle image/png; charset=utf-8
mimeType = mimeType.Split(';').FirstOrDefault();
await _providerManager.SaveImage(entity, memoryStream, mimeType, imageType, imageIndex, CancellationToken.None).ConfigureAwait(false);
await entity.RefreshMetadata(CancellationToken.None, forceRefresh: true, forceSave: true, allowSlowProviders: false).ConfigureAwait(false);

@ -78,16 +78,16 @@ namespace MediaBrowser.Providers.Music
}
}
// Try to find the id using last fm
var result = await FindIdFromLastFm(item, cancellationToken).ConfigureAwait(false);
if (result != null)
{
if (!string.IsNullOrEmpty(result))
{
return result;
}
}
//// Try to find the id using last fm
//var result = await FindIdFromLastFm(item, cancellationToken).ConfigureAwait(false);
//if (result != null)
//{
// if (!string.IsNullOrEmpty(result))
// {
// return result;
// }
//}
try
{

Loading…
Cancel
Save