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

15 lines
342 B

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; }
}
}