Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/32b5ef7b802237db03af3bb17f21b1efc579a7cd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
0 deletions
@ -290,6 +290,12 @@ namespace MediaBrowser.Model.Dto
/// <value><c>null</c> if [is place holder] contains no value, <c>true</c> if [is place holder]; otherwise, <c>false</c>.</value>
public bool? IsPlaceHolder { get ; set ; }
/// <summary>
/// Gets or sets the number.
/// </summary>
/// <value>The number.</value>
public string Number { get ; set ; }
/// <summary>
/// Gets or sets the index number.
/// </summary>
@ -1845,6 +1845,10 @@ namespace MediaBrowser.Server.Implementations.LiveTv
var dto = tuple . Item1 ;
var channel = tuple . Item2 ;
dto . Number = channel . Number ;
dto . ChannelType = channel . ChannelType ;
dto . ServiceName = GetService ( channel ) . Name ;
dto . MediaSources = channel . GetMediaSources ( true ) . ToList ( ) ;
var channelIdString = channel . Id . ToString ( "N" ) ;