mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2025-06-16 19:35:24 +02:00
Administrator snowflake ids should be in strings
This commit is contained in:
@ -8,5 +8,5 @@ def get_administrators_list():
|
||||
q = db.session.query(Administrators).all()
|
||||
their_ids = []
|
||||
for admin in q:
|
||||
their_ids.append(admin.user_id)
|
||||
their_ids.append(str(admin.user_id))
|
||||
return their_ids
|
Reference in New Issue
Block a user