mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
order sync users
This commit is contained in:
parent
31bd7a0e9f
commit
8b7ade8e9d
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user