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/e049d2bfb5e37f3eac886d56f6aacd6308cfc52a/MediaBrowser.Model/Drawing/ImageFormat.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Drawing
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Enum ImageOutputFormat
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum ImageFormat
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The BMP
|
|
|
|
|
/// </summary>
|
|
|
|
|
Bmp,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The GIF
|
|
|
|
|
/// </summary>
|
|
|
|
|
Gif,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The JPG
|
|
|
|
|
/// </summary>
|
|
|
|
|
Jpg,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The PNG
|
|
|
|
|
/// </summary>
|
|
|
|
|
Png,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The webp
|
|
|
|
|
/// </summary>
|
|
|
|
|
Webp
|
|
|
|
|
}
|
|
|
|
|
}
|