Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f2b87c09542aa186eed00379d03c462adb2c057e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -115,7 +115,7 @@ namespace Jellyfin.Drawing.Skia
// resize to the same aspect as the original
int iWidth = Math . Abs ( iHeight * currentBitmap . Width / currentBitmap . Height ) ;
using var resizedImage = SkiaEncoder . ResizeImage ( b itmap, new SKImageInfo ( iWidth , iHeight , currentBitmap . ColorType , currentBitmap . AlphaType , currentBitmap . ColorSpace ) ) ;
using var resizedImage = SkiaEncoder . ResizeImage ( currentB itmap, new SKImageInfo ( iWidth , iHeight , currentBitmap . ColorType , currentBitmap . AlphaType , currentBitmap . ColorSpace ) ) ;
// crop image
int ix = Math . Abs ( ( iWidth - iSlice ) / 2 ) ;
@ -177,7 +177,7 @@ namespace Jellyfin.Drawing.Skia
// Scale image. The FromBitmap creates a copy
var imageInfo = new SKImageInfo ( cellWidth , cellHeight , currentBitmap . ColorType , currentBitmap . AlphaType , currentBitmap . ColorSpace ) ;
using var resizedBitmap = SKBitmap . FromImage ( SkiaEncoder . ResizeImage ( b itmap, imageInfo ) ) ;
using var resizedBitmap = SKBitmap . FromImage ( SkiaEncoder . ResizeImage ( currentB itmap, imageInfo ) ) ;
// draw this image into the strip at the next position
var xPos = x * cellWidth ;