Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/02da312f8aaf9975f31291fd65687f637e38530c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -1837,7 +1837,7 @@ namespace Emby.Server.Implementations.Library
. ForEach ( x = >
{
string blurhash = ImageProcessor . GetImageHash ( x . Path ) ;
ImageDimensions size = ImageProcessor . GetImageDimensions ( item , x , true );
ImageDimensions size = ImageProcessor . GetImageDimensions ( item , x );
x . Width = size . Width ;
x . Height = size . Height ;
x . Hash = blurhash ;
@ -336,7 +336,7 @@ namespace MediaBrowser.Api.Images
blurhash = _imageProcessor . GetImageHash ( info . Path ) ;
info . Hash = blurhash ; // TODO: this doesn't seem like the right thing to do
ImageDimensions size = _imageProcessor . GetImageDimensions ( item , info , true );
ImageDimensions size = _imageProcessor . GetImageDimensions ( item , info );
_libraryManager . UpdateImages ( item ) ;
width = size . Width ;
height = size . Height ;