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/b635b5a7e3b72c91922d36bce6b29265123f88f8/MediaBrowser.Controller/TV/ITVSeriesManager.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/TV/ITVSeriesManager.cs

32 lines
1.0 KiB

#pragma warning disable CS1591
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
6 years ago
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Controller.TV
{
/// <summary>
/// The TV Series manager.
/// </summary>
6 years ago
public interface ITVSeriesManager
{
/// <summary>
/// Gets the next up.
/// </summary>
/// <param name="query">The next up query.</param>
/// <param name="options">The dto options.</param>
/// <returns>The next up items.</returns>
6 years ago
QueryResult<BaseItem> GetNextUp(NextUpQuery query, DtoOptions options);
/// <summary>
/// Gets the next up.
/// </summary>
/// <param name="request">The next up request.</param>
/// <param name="parentsFolders">The list of parent folders.</param>
/// <param name="options">The dto options.</param>
/// <returns>The next up items.</returns>
6 years ago
QueryResult<BaseItem> GetNextUp(NextUpQuery request, BaseItem[] parentsFolders, DtoOptions options);
}
}