動かないのを修正したい
This commit is contained in:
parent
260779fca3
commit
0c4da769ac
1 changed files with 15 additions and 15 deletions
|
@ -35,7 +35,7 @@ class Bot(discord.Client):
|
|||
cursor.execute("SELECT * FROM club_member WHERE discord_userid = %s", (discord_user_id,))
|
||||
user_record = cursor.fetchall()
|
||||
#ユーザーデータがなかったら(未登録の場合)
|
||||
if not user_record[0]:
|
||||
if not user_record:
|
||||
result = {"result": "user_data_not_found"}
|
||||
#ユーザーデータが見つかった場合(登録済みの場合)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue