diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-05-31 17:17:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-31 17:17:15 +0200 |
| commit | bee53dee543db7ab04d8c927c762c5c6ca16f801 (patch) | |
| tree | 9e99967e90f6f8a8ce2c87a5595cb173ccb81f4a /MediaBrowser.Controller | |
| parent | 99e9b2310f8a2c2a8bc630b31243df63507b1e17 (diff) | |
| parent | a3b2b9c07fb22f5de0bbe8cb67adbecbc344d9cf (diff) | |
Merge pull request #16976 from PCEWLKR/investigate-remove-nowplayingqueuefullitems
Remove NowPlayingQueueFullItems from session DTOs
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Session/SessionInfo.cs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index 96783f6073..fb68bfb770 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -45,7 +45,6 @@ namespace MediaBrowser.Controller.Session PlayState = new PlayerStateInfo(); SessionControllers = []; NowPlayingQueue = []; - NowPlayingQueueFullItems = []; } /// <summary> @@ -272,15 +271,9 @@ namespace MediaBrowser.Controller.Session public IReadOnlyList<QueueItem> NowPlayingQueue { get; set; } /// <summary> - /// Gets or sets the now playing queue full items. - /// </summary> - /// <value>The now playing queue full items.</value> - public IReadOnlyList<BaseItemDto> NowPlayingQueueFullItems { get; set; } - - /// <summary> /// Gets or sets a value indicating whether the session has a custom device name. /// </summary> - /// <value><c>true</c> if this session has a custom device name; otherwise, <c>false</c>.</value> + /// <value><c>true</c> if the session has a custom device name; otherwise, <c>false</c>.</value> public bool HasCustomDeviceName { get; set; } /// <summary> |
