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

update image providers

pull/702/head
Luke Pulverenti 10 years ago
parent adda5f05ce
commit bc3da4bbad

@ -405,10 +405,13 @@ namespace MediaBrowser.Providers.Manager
else
{
var existing = item.GetImageInfo(type, 0);
if (existing != null && !_fileSystem.FileExists(existing.Path))
if (existing != null)
{
item.RemoveImage(existing);
changed = true;
if (existing.IsLocalFile && !_fileSystem.FileExists(existing.Path))
{
item.RemoveImage(existing);
changed = true;
}
}
}
}
@ -502,7 +505,7 @@ namespace MediaBrowser.Providers.Manager
return true;
}
return true;
return false;
}
private void SaveImageStub(IHasImages item, ImageType imageType, string url)

@ -1019,7 +1019,7 @@ namespace MediaBrowser.Providers.Manager
{
var folder = (Folder)child;
await folder.ValidateChildren(new Progress<double>(), CancellationToken.None).ConfigureAwait(false);
await folder.ValidateChildren(new Progress<double>(), CancellationToken.None, options, true).ConfigureAwait(false);
}
}
}

Loading…
Cancel
Save