Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/bbefb03bcf5b1a43691f14858d30ecc603b55c3d?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
35 additions and
2 deletions
@ -191,6 +191,23 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers
video . IsHD = true ;
video . IsHD = true ;
}
}
}
}
SetIsoType ( video ) ;
}
protected void SetIsoType ( Video video )
{
if ( video . VideoType = = VideoType . Iso )
{
if ( video . Path . IndexOf ( "dvd" , StringComparison . OrdinalIgnoreCase ) ! = - 1 )
{
video . IsoType = IsoType . Dvd ;
}
else if ( video . Path . IndexOf ( "bluray" , StringComparison . OrdinalIgnoreCase ) ! = - 1 )
{
video . IsoType = IsoType . BluRay ;
}
}
}
}
protected void Set3DFormat ( Video video , bool is3D , string format3D )
protected void Set3DFormat ( Video video , bool is3D , string format3D )
@ -479,7 +479,7 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.Movies
return null ;
return null ;
}
}
return new T
var returnVideo = new T
{
{
Path = folderPaths [ 0 ] ,
Path = folderPaths [ 0 ] ,
@ -489,6 +489,10 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.Movies
Name = result . Stacks [ 0 ] . Name
Name = result . Stacks [ 0 ] . Name
} ;
} ;
SetIsoType ( returnVideo ) ;
return returnVideo ;
}
}
private bool IsInvalid ( Folder parent , string collectionType )
private bool IsInvalid ( Folder parent , string collectionType )
@ -107,6 +107,18 @@
<Content Include= "dashboard-ui\bower_components\fastclick\lib\fastclick.js" >
<Content Include= "dashboard-ui\bower_components\fastclick\lib\fastclick.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
</Content>
<Content Include= "dashboard-ui\components\guestinviter\guestinviter.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\components\guestinviter\guestinviter.template.html" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\components\metadataeditor\metadataeditor.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\components\metadataeditor\personeditor.template.html" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\components\recordingcreator\recordingcreator.js" >
<Content Include= "dashboard-ui\components\recordingcreator\recordingcreator.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
</Content>
@ -161,7 +173,7 @@
<Content Include= "dashboard-ui\components\medialibraryeditor\medialibraryeditor.template.html" >
<Content Include= "dashboard-ui\components\medialibraryeditor\medialibraryeditor.template.html" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
</Content>
<Content Include= "dashboard-ui\components\metadataeditor\ metadata editor.js">
<Content Include= "dashboard-ui\components\metadataeditor\ person editor.js">
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
</Content>
<Content Include= "dashboard-ui\components\metadataeditor\metadataeditor.template.html" >
<Content Include= "dashboard-ui\components\metadataeditor\metadataeditor.template.html" >