Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/46fde9aa04377d151cce128978e4eb9c54b86d98
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
11 additions and
5 deletions
@ -5694,13 +5694,17 @@ AND Type = @InternalPersonType)");
item . IsHearingImpaired = reader . TryGetBoolean ( 43 , out var result ) & & result ;
if ( item . Type = = MediaStreamType . Subtitle )
if ( item . Type is MediaStreamType . Audio or MediaStreamType . Subtitle )
{
item . LocalizedUndefined = _localization . GetLocalizedString ( "Undefined" ) ;
item . LocalizedDefault = _localization . GetLocalizedString ( "Default" ) ;
item . LocalizedForced = _localization . GetLocalizedString ( "Forced" ) ;
item . LocalizedExternal = _localization . GetLocalizedString ( "External" ) ;
item . LocalizedHearingImpaired = _localization . GetLocalizedString ( "HearingImpaired" ) ;
if ( item . Type is MediaStreamType . Subtitle )
{
item . LocalizedUndefined = _localization . GetLocalizedString ( "Undefined" ) ;
item . LocalizedForced = _localization . GetLocalizedString ( "Forced" ) ;
item . LocalizedHearingImpaired = _localization . GetLocalizedString ( "HearingImpaired" ) ;
}
}
return item ;
@ -721,6 +721,8 @@ namespace MediaBrowser.MediaEncoding.Probing
if ( streamInfo . CodecType = = CodecType . Audio )
{
stream . Type = MediaStreamType . Audio ;
stream . LocalizedDefault = _localization . GetLocalizedString ( "Default" ) ;
stream . LocalizedExternal = _localization . GetLocalizedString ( "External" ) ;
stream . Channels = streamInfo . Channels ;
@ -18,7 +18,7 @@ namespace Jellyfin.MediaEncoding.Tests.Probing
public class ProbeResultNormalizerTests
{
private readonly JsonSerializerOptions _jsonOptions ;
private readonly ProbeResultNormalizer _probeResultNormalizer = new ProbeResultNormalizer ( new NullLogger < EncoderValidatorTests > ( ) , n ull ) ;
private readonly ProbeResultNormalizer _probeResultNormalizer = new ProbeResultNormalizer ( new NullLogger < EncoderValidatorTests > ( ) , n ew Mock < ILocalizationManager > ( ) . Object ) ;
public ProbeResultNormalizerTests ( )
{