mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-26 06:57:04 +01:00
Administrator snowflake ids should be in strings
This commit is contained in:
parent
eea94477ea
commit
e5f7a90773
@ -8,5 +8,5 @@ def get_administrators_list():
|
|||||||
q = db.session.query(Administrators).all()
|
q = db.session.query(Administrators).all()
|
||||||
their_ids = []
|
their_ids = []
|
||||||
for admin in q:
|
for admin in q:
|
||||||
their_ids.append(admin.user_id)
|
their_ids.append(str(admin.user_id))
|
||||||
return their_ids
|
return their_ids
|
Loading…
Reference in New Issue
Block a user