Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/1dfaa171a95e3e6eea780f018cd8442f1dcc9f78
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
33 additions and
1 deletions
@ -394,6 +394,7 @@ namespace Emby.Server.Implementations.Session
session . PlayState . SubtitleStreamIndex = info . SubtitleStreamIndex ;
session . PlayState . PlayMethod = info . PlayMethod ;
session . PlayState . RepeatMode = info . RepeatMode ;
session . PlayState . PlaybackOrder = info . PlaybackOrder ;
session . PlaylistItemId = info . PlaylistItemId ;
var nowPlayingQueue = info . NowPlayingQueue ;
@ -48,6 +48,7 @@ namespace MediaBrowser.Model.Session
PlayNext = 38 ,
ToggleOsdMenu = 39 ,
Play = 40 ,
SetMaxStreamingBitrate = 41
SetMaxStreamingBitrate = 41 ,
SetPlaybackOrder = 42
}
}
@ -0,0 +1,18 @@
namespace MediaBrowser.Model.Session
{
/// <summary>
/// Enum PlaybackOrder.
/// </summary>
public enum PlaybackOrder
{
/// <summary>
/// Sorted playlist.
/// </summary>
Default = 0 ,
/// <summary>
/// Shuffled playlist.
/// </summary>
Shuffle = 1
}
}
@ -107,6 +107,12 @@ namespace MediaBrowser.Model.Session
/// <value>The repeat mode.</value>
public RepeatMode RepeatMode { get ; set ; }
/// <summary>
/// Gets or sets the playback order.
/// </summary>
/// <value>The playback order.</value>
public PlaybackOrder PlaybackOrder { get ; set ; }
public QueueItem [ ] NowPlayingQueue { get ; set ; }
public string PlaylistItemId { get ; set ; }
@ -65,6 +65,12 @@ namespace MediaBrowser.Model.Session
/// <value>The repeat mode.</value>
public RepeatMode RepeatMode { get ; set ; }
/// <summary>
/// Gets or sets the playback order.
/// </summary>
/// <value>The playback order.</value>
public PlaybackOrder PlaybackOrder { get ; set ; }
/// <summary>
/// Gets or sets the now playing live stream identifier.
/// </summary>