Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/dd3b48f2039fe299a55db437190a9e0d5c78145c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
5 deletions
@ -393,6 +393,7 @@ namespace Jellyfin.Api.Controllers
_logger . LogWarning ( "Some fonts will not be sent due to size limitations" ) ;
yield break ;
}
yield return fontFile ;
}
}
@ -425,7 +426,7 @@ namespace Jellyfin.Api.Controllers
if ( fontFile ! = null & & fileSize ! = null & & fileSize > 0 )
{
_logger . LogDebug ( "Fallback font size is { f ileSize} Bytes", fileSize ) ;
_logger . LogDebug ( "Fallback font size is { F ileSize} Bytes", fileSize ) ;
FileStream stream = new FileStream ( fontFile . FullName , FileMode . Open , FileAccess . Read ) ;
return File ( stream , MimeTypes . GetMimeType ( fontFile . FullName ) ) ;
@ -1,17 +1,17 @@
#nullable disable
#pragma warning disable CS1591
using System ;
namespace MediaBrowser.Model.Subtitles
{
/// <summary>
/// Class FontFile.
/// </summary>
public class FontFile
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get ; set ; }
public string ? Name { get ; set ; }
/// <summary>
/// Gets or sets the size.