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

Try not saving virtual folders in repository

pull/702/head
Eric Reed 12 years ago
parent a82fc184d5
commit 0ce5fc7799

@ -699,9 +699,9 @@ namespace MediaBrowser.Controller.Entities
await Task.WhenAll(saveTasks).ConfigureAwait(false);
//and save children in repo...
//and save children in repo... but never save virtual plugin folders as they will always be re-created by the plugin
Logger.Info("*** Saving " + newChildren.Count + " children for " + Name);
await Kernel.Instance.ItemRepository.SaveChildren(Id, newChildren, CancellationToken.None).ConfigureAwait(false);
await Kernel.Instance.ItemRepository.SaveChildren(Id, newChildren.Where(c => !(c is BasePluginFolder)), CancellationToken.None).ConfigureAwait(false);
}
if (changedArgs.HasChange)

Loading…
Cancel
Save