Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/b8ccf7fa709ee4044f8853c982f11be8695caf85/MediaBrowser.Controller/Providers/LocalImageInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Providers/LocalImageInfo.cs

17 lines
310 B

#nullable disable
#pragma warning disable CS1591
6 years ago
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.IO;
namespace MediaBrowser.Controller.Providers
{
public class LocalImageInfo
{
public FileSystemMetadata FileInfo { get; set; }
6 years ago
public ImageType Type { get; set; }
}
}