Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6120286bfdc274b8cb388b1d67bf616b6c2d09d0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
11 additions and
2 deletions
@ -176,7 +176,10 @@ namespace MediaBrowser.Api
VideoCodec = videoCodec ,
Container = state . OutputContainer ,
Framerate = framerate ,
CompletionPercentage = percentComplete
CompletionPercentage = percentComplete ,
Width = state . OutputWidth ,
Height = state . OutputHeight ,
AudioChannels = state . OutputAudioChannels
} ) ;
}
}
@ -1584,6 +1584,8 @@ namespace MediaBrowser.Api.Playback
state . OutputAudioCodec = GetAudioCodec ( state . Request ) ;
state . OutputAudioChannels = GetNumAudioChannelsParam ( state . Request , state . AudioStream , state . OutputAudioCodec ) ;
if ( videoRequest ! = null )
{
state . OutputVideoCodec = GetVideoCodec ( videoRequest ) ;
@ -66,5 +66,9 @@
public float? Framerate { get ; set ; }
public double? CompletionPercentage { get ; set ; }
public int? Width { get ; set ; }
public int? Height { get ; set ; }
public int? AudioChannels { get ; set ; }
}
}
@ -464,7 +464,7 @@ namespace MediaBrowser.Server.Implementations.Session
UpdateNowPlayingItem ( session , info , libraryItem ) ;
if ( ! string . IsNullOrEmpty ( session . DeviceId ) )
if ( ! string . IsNullOrEmpty ( session . DeviceId ) & & info . PlayMethod ! = PlayMethod . Transcode )
{
ClearTranscodingInfo ( session . DeviceId ) ;
}