mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
order sync users
This commit is contained in:
@@ -700,7 +700,10 @@ namespace MediaBrowser.Server.Implementations.Sync
|
||||
}
|
||||
}
|
||||
|
||||
response.ItemUserAccess[itemId] = users.Select(i => i.Id.ToString("N")).ToList();
|
||||
response.ItemUserAccess[itemId] = users
|
||||
.Select(i => i.Id.ToString("N"))
|
||||
.OrderBy(i => i)
|
||||
.ToList();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user