Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/3ec7ceac0282e21219b6a8da858375e82700c595/MediaBrowser.Model/Dto/MetadataEditorInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Dto/MetadataEditorInfo.cs

28 lines
936 B

using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.Providers;
using System.Collections.Generic;
namespace MediaBrowser.Model.Dto
{
public class MetadataEditorInfo
{
public List<ParentalRating> ParentalRatingOptions { get; set; }
public List<CountryInfo> Countries { get; set; }
public List<CultureDto> Cultures { get; set; }
public List<ExternalIdInfo> ExternalIdInfos { get; set; }
public string ContentType { get; set; }
public List<NameValuePair> ContentTypeOptions { get; set; }
public MetadataEditorInfo()
{
ParentalRatingOptions = new List<ParentalRating>();
Countries = new List<CountryInfo>();
Cultures = new List<CultureDto>();
ExternalIdInfos = new List<ExternalIdInfo>();
ContentTypeOptions = new List<NameValuePair>();
}
}
}