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/9ef7ccfc125d00c0a0ce789626db258a4cb51f2f/MediaBrowser.Controller/Entities/IHasAspectRatio.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Entities/IHasAspectRatio.cs

17 lines
361 B

#nullable disable
namespace MediaBrowser.Controller.Entities
6 years ago
{
/// <summary>
/// Interface IHasAspectRatio.
6 years ago
/// </summary>
public interface IHasAspectRatio
{
/// <summary>
/// Gets or sets the aspect ratio.
/// </summary>
/// <value>The aspect ratio.</value>
string AspectRatio { get; set; }
}
}