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/0485ff189948e4c0b6532e835b9f6740e89d0d40/MediaBrowser.Controller/Drawing/ImageStream.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Drawing/ImageStream.cs

43 lines
903 B

#pragma warning disable CA1711, CS1591
using System;
6 years ago
using System.IO;
using MediaBrowser.Model.Drawing;
6 years ago
namespace MediaBrowser.Controller.Drawing
{
public class ImageStream : IDisposable
{
public ImageStream(Stream stream)
{
Stream = stream;
}
6 years ago
/// <summary>
/// Gets the stream.
6 years ago
/// </summary>
/// <value>The stream.</value>
public Stream Stream { get; }
6 years ago
/// <summary>
/// Gets or sets the format.
/// </summary>
/// <value>The format.</value>
public ImageFormat Format { get; set; }
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
6 years ago
{
Stream?.Dispose();
6 years ago
}
}
}
}