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

28 lines
563 B

#pragma warning disable CS1591
6 years ago
using System;
namespace MediaBrowser.Controller.Entities
{
public interface IHasSeries
{
/// <summary>
/// Gets the name of the series.
/// </summary>
/// <value>The name of the series.</value>
string SeriesName { get; set; }
Guid SeriesId { get; set; }
string SeriesPresentationUniqueKey { get; set; }
6 years ago
string FindSeriesName();
6 years ago
string FindSeriesSortName();
6 years ago
Guid FindSeriesId();
6 years ago
string FindSeriesPresentationUniqueKey();
}
}