corrected the other order by
This commit is contained in:
parent
091468985e
commit
010390b95f
@ -77,9 +77,9 @@ SELECT name, id, plays, public, server_id, uploader_id
|
||||
uploader_id = ? OR
|
||||
server_id = ?
|
||||
)
|
||||
ORDER BY rand(), public = 1, server_id = ?, uploader_id = ?
|
||||
ORDER BY uploader_id = ? DESC, server_id = ? DESC, public = 1 DESC, rand()
|
||||
",
|
||||
name, user_id, guild_id, guild_id, user_id
|
||||
name, user_id, guild_id, user_id, guild_id
|
||||
)
|
||||
.fetch_all(&db_pool)
|
||||
.await?;
|
||||
|
Loading…
Reference in New Issue
Block a user