Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/35c0801d6cd1def0f8c50b7e892e04b56d7abbb1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
2 deletions
@ -19,12 +19,13 @@ namespace Jellyfin.MediaEncoding.Hls.Playlist
/// <inheritdoc />
public class DynamicHlsPlaylistGenerator : IDynamicHlsPlaylistGenerator
{
private const string DefaultContainerExtension = ".ts" ;
private readonly JsonSerializerOptions _jsonOptions = JsonDefaults . Options ;
private readonly IServerConfigurationManager _serverConfigurationManager ;
private readonly IMediaEncoder _mediaEncoder ;
private readonly IApplicationPaths _applicationPaths ;
private readonly KeyframeExtractor _keyframeExtractor ;
private const string DefaultContainerExtension = ".ts" ;
/// <summary>
/// Initializes a new instance of the <see cref="DynamicHlsPlaylistGenerator"/> class.
@ -9,7 +9,7 @@
/// Creates the main playlist containing the main video or audio stream.
/// </summary>
/// <param name="request">An instance of the <see cref="CreateMainPlaylistRequest"/> class.</param>
/// <returns> </returns>
/// <returns> The playlist as a formatted string. </returns>
string CreateMainPlaylist ( CreateMainPlaylistRequest request ) ;
}
}