Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c230dab0bd3ce929992b6452b63ebe55e2d906bd?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
20 additions and
5 deletions
@ -339,7 +339,7 @@ namespace MediaBrowser.Api
// We can really reduce the timeout for apps that are using the newer api
// We can really reduce the timeout for apps that are using the newer api
if ( ! string . IsNullOrWhiteSpace ( job . PlaySessionId ) & & job . Type ! = TranscodingJobType . Progressive )
if ( ! string . IsNullOrWhiteSpace ( job . PlaySessionId ) & & job . Type ! = TranscodingJobType . Progressive )
{
{
timerDuration = 2 0000;
timerDuration = 6 0000;
}
}
// Don't start the timer for playback checkins with progressive streaming
// Don't start the timer for playback checkins with progressive streaming
@ -543,7 +543,9 @@ namespace MediaBrowser.Api.Playback.Hls
return false ;
return false ;
}
}
return state . VideoRequest . VideoBitRate . HasValue ;
// Having problems in android
return false ;
//return state.VideoRequest.VideoBitRate.HasValue;
}
}
private void AppendPlaylist ( StringBuilder builder , string url , int bitrate , string subtitleGroup )
private void AppendPlaylist ( StringBuilder builder , string url , int bitrate , string subtitleGroup )
@ -1,5 +1,5 @@
using System.Collections.Generic ;
using MediaBrowser.Model.LiveTv ;
using MediaBrowser.Model.LiveTv ;
using System.Collections.Generic ;
namespace MediaBrowser.Controller.LiveTv
namespace MediaBrowser.Controller.LiveTv
{
{
@ -23,6 +23,12 @@ namespace MediaBrowser.Controller.LiveTv
/// <value>The identifier.</value>
/// <value>The identifier.</value>
public string Id { get ; set ; }
public string Id { get ; set ; }
/// <summary>
/// Gets or sets the URL.
/// </summary>
/// <value>The URL.</value>
public string Url { get ; set ; }
/// <summary>
/// <summary>
/// Gets or sets the status.
/// Gets or sets the status.
/// </summary>
/// </summary>
@ -22,6 +22,12 @@ namespace MediaBrowser.Model.LiveTv
/// <value>The identifier.</value>
/// <value>The identifier.</value>
public string Id { get ; set ; }
public string Id { get ; set ; }
/// <summary>
/// Gets or sets the URL.
/// </summary>
/// <value>The URL.</value>
public string Url { get ; set ; }
/// <summary>
/// <summary>
/// Gets or sets the status.
/// Gets or sets the status.
/// </summary>
/// </summary>
@ -293,7 +293,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv
ProgramName = info . ProgramName ,
ProgramName = info . ProgramName ,
SourceType = info . SourceType ,
SourceType = info . SourceType ,
Status = info . Status ,
Status = info . Status ,
ChannelName = channelName
ChannelName = channelName ,
Url = info . Url
} ;
} ;
if ( ! string . IsNullOrEmpty ( info . ChannelId ) )
if ( ! string . IsNullOrEmpty ( info . ChannelId ) )