Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/18906d0205f99e27141b45282fd28ae9a97e93e4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
3 deletions
@ -31,8 +31,12 @@ namespace Emby.Naming.Video
public IEnumerable < FileStack > ResolveAudioBooks ( IEnumerable < FileSystemMetadata > files )
{
foreach ( var directory in files . GroupBy ( file = >
file . IsDirectory ? file . FullName : Path . GetDirectoryName ( file . FullName ) ) )
var groupedDirectoryFiles = files . GroupBy ( file = >
file . IsDirectory
? file . FullName
: Path . GetDirectoryName ( file . FullName ) ) ;
foreach ( var directory in groupedDirectoryFiles )
{
var stack = new FileStack { Name = Path . GetFileName ( directory . Key ) , IsDirectoryStack = false } ;
foreach ( var file in directory )
@ -151,7 +151,8 @@ namespace Emby.Naming.Video
// Whatever files are left, just add them
list . AddRange ( remainingFiles . Select ( i = > new VideoInfo ( i . Name )
{
Files = new List < VideoFileInfo > { i } , Year = i . Year
Files = new List < VideoFileInfo > { i } ,
Year = i . Year
} ) ) ;
return list ;