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/41ac5f8d76ce11a852e4dafbf20ad57d63d55f96/MediaBrowser.Controller/Channels/ChannelParentalRating.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Channels/ChannelParentalRating.cs

18 lines
235 B

#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
6 years ago
{
public enum ChannelParentalRating
{
GeneralAudience = 0,
UsPG = 1,
UsPG13 = 2,
UsR = 3,
Adult = 4
}
}