1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-23 19:02:37 +01:00

Merge pull request #1214 from MathMan05/patch-2

Fix op 8
This commit is contained in:
Madeline 2024-11-05 09:06:40 +11:00 committed by GitHub
commit c51595a6da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -98,7 +98,6 @@ export async function onRequestGuildMembers(this: WebSocket, { d }: Payload) {
"',' || member.roles || ',' NOT LIKE :everyoneRoleIdList",
{ everyoneRoleIdList: "%," + guild_id + ",%" },
)
.andWhere("session.status != 'offline'")
.addOrderBy("user.username", "ASC")
.limit(memberFind.take);