mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-02 16:33:07 +00:00
Merge pull request #7059 from crobibero/device-order
This commit is contained in:
@@ -173,8 +173,8 @@ namespace Jellyfin.Server.Implementations.Devices
|
||||
var sessions = dbContext.Devices
|
||||
.Include(d => d.User)
|
||||
.AsQueryable()
|
||||
.OrderBy(d => d.DeviceId)
|
||||
.ThenByDescending(d => d.DateLastActivity)
|
||||
.OrderByDescending(d => d.DateLastActivity)
|
||||
.ThenBy(d => d.DeviceId)
|
||||
.AsAsyncEnumerable();
|
||||
|
||||
if (supportsSync.HasValue)
|
||||
|
||||
Reference in New Issue
Block a user