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

Folder can't have extras

pull/6956/head
cvium 3 years ago
parent 6d6fb1bba3
commit c5569c701c

@ -1451,7 +1451,7 @@ namespace MediaBrowser.Controller.Entities
/// <returns><c>true</c> if any items have changed, else <c>false</c>.</returns>
protected virtual async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
{
if (!IsFileProtocol || !SupportsOwnedItems || IsInMixedFolder || this is ICollectionFolder)
if (!IsFileProtocol || !SupportsOwnedItems || IsInMixedFolder || this is ICollectionFolder || this.GetType() == typeof(Folder))
{
return false;
}

Loading…
Cancel
Save