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

Fixed movie and series resolution

pull/702/head
LukePulverenti Luke Pulverenti luke pulverenti 13 years ago
parent 578ec7c5a5
commit de74609784

@ -25,7 +25,7 @@ namespace MediaBrowser.Movies.Resolvers
}
// Optimization to avoid running all these tests against VF's
if (args.Parent != null && args.Parent.IsVirtualFolder)
if (args.Parent != null && args.Parent.IsRoot)
{
return null;
}

@ -16,7 +16,7 @@ namespace MediaBrowser.TV.Resolvers
if (args.IsDirectory)
{
// Optimization to avoid running all these tests against VF's
if (args.Parent != null && args.Parent.IsVirtualFolder)
if (args.Parent != null && args.Parent.IsRoot)
{
return null;
}

Loading…
Cancel
Save