Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/ea7e834ae18d31b453d1163ab7f43cb8df6fa4b0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
1 deletions
@ -5,6 +5,7 @@ using System.Linq;
using System.Threading ;
using System.Threading.Tasks ;
using Jellyfin.Data.Enums ;
using Jellyfin.Extensions ;
using MediaBrowser.Controller.Entities ;
using MediaBrowser.Controller.Entities.Audio ;
using MediaBrowser.Controller.Library ;
@ -136,6 +137,10 @@ namespace MediaBrowser.Providers.MediaInfo
if ( ! audio . IsLocked )
{
await FetchDataFromTags ( audio , mediaInfo , options , tryExtractEmbeddedLyrics ) . ConfigureAwait ( false ) ;
if ( tryExtractEmbeddedLyrics )
{
AddExternalLyrics ( audio , mediaStreams , options ) ;
}
}
audio . HasLyrics = mediaStreams . Any ( s = > s . Type = = MediaStreamType . Lyric ) ;
@ -369,7 +374,10 @@ namespace MediaBrowser.Providers.MediaInfo
var externalLyricFiles = _lyricResolver . GetExternalStreams ( audio , startIndex , options . DirectoryService , false ) ;
audio . LyricFiles = externalLyricFiles . Select ( i = > i . Path ) . Distinct ( ) . ToArray ( ) ;
currentStreams . AddRange ( externalLyricFiles ) ;
if ( externalLyricFiles . Count > 0 )
{
currentStreams . Add ( externalLyricFiles [ 0 ] ) ;
}
}
}
}