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/d296a1f6d0ee8cb48c2234aa9666d01035cd18b5/MediaBrowser.Model/Session/PlayCommand.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Session/PlayCommand.cs

34 lines
634 B

namespace MediaBrowser.Model.Session
6 years ago
{
/// <summary>
/// Enum PlayCommand.
6 years ago
/// </summary>
public enum PlayCommand
{
/// <summary>
/// The play now.
6 years ago
/// </summary>
PlayNow = 0,
6 years ago
/// <summary>
/// The play next.
6 years ago
/// </summary>
PlayNext = 1,
6 years ago
/// <summary>
/// The play last.
6 years ago
/// </summary>
PlayLast = 2,
6 years ago
/// <summary>
/// The play instant mix.
6 years ago
/// </summary>
PlayInstantMix = 3,
6 years ago
/// <summary>
/// The play shuffle.
6 years ago
/// </summary>
PlayShuffle = 4
}
}