Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/efeaa59512508b668fe568fcab583c9ea7457e91 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed last fm image provider downloading images over and over

pull/702/head
Luke Pulverenti 12 years ago
parent 62621bf97b
commit efeaa59512

@ -74,7 +74,7 @@ namespace MediaBrowser.Providers.Music
{
var url = GetImageUrl(item);
if (!string.IsNullOrWhiteSpace(url))
if (!string.IsNullOrWhiteSpace(url) && !item.HasImage(ImageType.Primary))
{
await _providerManager.SaveImage(item, url, LastfmBaseProvider.LastfmResourcePool, ImageType.Primary, null, cancellationToken)
.ConfigureAwait(false);

@ -75,7 +75,7 @@ namespace MediaBrowser.Providers.Music
{
return item.LocationType == LocationType.FileSystem && item.ResolveArgs.ContainsMetaFileByName("artist.xml");
}
/// <summary>
/// Finds the id.
/// </summary>

Loading…
Cancel
Save