Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/7434dae5d2069d9bcb05049099832790b6cafc25
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
21 additions and
2 deletions
@ -75,6 +75,11 @@ namespace Emby.Server.Implementations.MediaEncoder
return false ;
}
if ( ! video . IsCompleteMedia )
{
return false ;
}
// Can't extract images if there are no video streams
return video . DefaultVideoStreamIndex . HasValue ;
}
@ -161,7 +161,10 @@ namespace MediaBrowser.Controller.Entities
{
videoType = VideoType . Dvd ;
}
else
{
return new string [ ] { } ;
}
return MediaEncoder . GetPlayableStreamFileNames ( Path , videoType ) ;
}
@ -265,6 +268,12 @@ namespace MediaBrowser.Controller.Entities
return base . CanDelete ( ) ;
}
[IgnoreDataMember]
public bool IsCompleteMedia
{
get { return ! IsActiveRecording ( ) ; }
}
[IgnoreDataMember]
protected virtual bool EnableDefaultVideoUserDataKeys
{
@ -39,6 +39,11 @@ namespace MediaBrowser.Providers.MediaInfo
return new List < string > ( ) ;
}
if ( ! video . IsCompleteMedia )
{
return new List < string > ( ) ;
}
VideoContentType mediaType ;
if ( video is Episode )
@ -1,3 +1,3 @@
using System.Reflection ;
[assembly: AssemblyVersion("3.2.28. 6 ")]
[assembly: AssemblyVersion("3.2.28. 7 ")]