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/6d3e15dc31a3339390c2a2d90e3031071b19a234/MediaBrowser.Controller/LiveTv/IListingsProvider.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/LiveTv/IListingsProvider.cs

27 lines
845 B

#pragma warning disable CS1591
using System;
6 years ago
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.LiveTv;
6 years ago
namespace MediaBrowser.Controller.LiveTv
{
public interface IListingsProvider
{
string Name { get; }
6 years ago
6 years ago
string Type { get; }
6 years ago
6 years ago
Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken);
6 years ago
6 years ago
Task Validate(ListingsProviderInfo info, bool validateLogin, bool validateListings);
6 years ago
6 years ago
Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location);
6 years ago
6 years ago
Task<List<ChannelInfo>> GetChannels(ListingsProviderInfo info, CancellationToken cancellationToken);
}
}