Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/3d7f2360387ba72887c91aa76e7ff82007cfb5eb
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
1 deletions
@ -240,7 +240,7 @@ namespace Emby.Server.Implementations.Library
{
// Enforce MinResumeDuration
var durationSeconds = TimeSpan . FromTicks ( runtimeTicks ) . TotalSeconds ;
if ( durationSeconds < _config . Configuration . MinResumeDurationSeconds )
if ( durationSeconds < _config . Configuration . MinResumeDurationSeconds & & ! ( item is Book ) )
{
positionTicks = 0 ;
data . Played = playedToCompletion = true ;
@ -11,6 +11,10 @@ namespace MediaBrowser.Controller.Entities
[JsonIgnore]
public override string MediaType = > Model . Entities . MediaType . Book ;
public override bool SupportsPlayedStatus = > true ;
public override bool SupportsPositionTicksResume = > true ;
[JsonIgnore]
public string SeriesPresentationUniqueKey { get ; set ; }
@ -20,6 +24,11 @@ namespace MediaBrowser.Controller.Entities
[JsonIgnore]
public Guid SeriesId { get ; set ; }
public Book ( )
{
this . RunTimeTicks = TimeSpan . TicksPerSecond ;
}
public string FindSeriesSortName ( )
{
return SeriesName ;