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

30 lines
794 B

#nullable disable
#pragma warning disable CA2227, CS1591
6 years ago
using System;
using System.Collections.Generic;
using Jellyfin.Data.Enums;
6 years ago
namespace MediaBrowser.Controller.Providers
{
public class EpisodeInfo : ItemLookupInfo
{
public EpisodeInfo()
{
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
SeasonProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
6 years ago
public Dictionary<string, string> SeriesProviderIds { get; set; }
public Dictionary<string, string> SeasonProviderIds { get; set; }
6 years ago
public int? IndexNumberEnd { get; set; }
public bool IsMissingEpisode { get; set; }
6 years ago
public string SeriesDisplayOrder { get; set; }
}
}