Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/21c3430ac4001b137b35d5ed46dd6d1d59434b58
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -265,7 +265,7 @@ namespace MediaBrowser.Providers.Subtitles
var hasCopy = hash ;
return results . Where ( x = > x . SubBad = = "0" & & mediaFilter ( x ) )
. OrderBy ( x = > x . MovieHash = = hash )
. OrderBy ( x = > ( x . MovieHash = = hash ? 0 : 1 ) )
. ThenBy ( x = > Math . Abs ( long . Parse ( x . MovieByteSize , _usCulture ) - movieByteSize ) )
. ThenByDescending ( x = > int . Parse ( x . SubDownloadsCnt , _usCulture ) )
. ThenByDescending ( x = > double . Parse ( x . SubRating , _usCulture ) )
@ -385,7 +385,7 @@ namespace MediaBrowser.Server.Implementations.Channels
var val = width . Value ;
var res = list
. OrderBy ( i = > i . Width . HasValue & & i . Width . Value < = val )
. OrderBy ( i = > ( i . Width . HasValue & & i . Width . Value < = val ? 0 : 1 ) )
. ThenBy ( i = > Math . Abs ( ( i . Width ? ? 0 ) - val ) )
. ThenByDescending ( i = > i . Width ? ? 0 )
. ThenBy ( list . IndexOf )