mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-16 10:40:12 +00:00
Reworked system/member property commands, fixed help system and bounds checking on tags
This commit is contained in:
parent
ea92569d26
commit
800f537b80
4 changed files with 162 additions and 208 deletions
|
|
@ -131,7 +131,7 @@ async def get_all_members(conn, system_id: int):
|
|||
|
||||
@db_wrap
|
||||
async def get_members_exceeding(conn, system_id: int, length: int):
|
||||
return await conn.fetch("select * from members where system = $1 and length(name) >= $2", system_id, length)
|
||||
return await conn.fetch("select * from members where system = $1 and length(name) > $2", system_id, length)
|
||||
|
||||
|
||||
@db_wrap
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue