Fix timeouts on deletion confirmations
This commit is contained in:
parent
da19933b5e
commit
1542a8dd40
@ -214,7 +214,7 @@ async def system_delete(conn, message, args):
|
|||||||
await client.send_message(message.channel, "Are you sure you want to delete your system? If so, reply to this message with the system's ID (`{}`).".format(system["hid"]))
|
await client.send_message(message.channel, "Are you sure you want to delete your system? If so, reply to this message with the system's ID (`{}`).".format(system["hid"]))
|
||||||
|
|
||||||
msg = await client.wait_for_message(author=message.author, channel=message.channel, timeout=60.0)
|
msg = await client.wait_for_message(author=message.author, channel=message.channel, timeout=60.0)
|
||||||
if msg.content == system["hid"]:
|
if msg and msg.content == system["hid"]:
|
||||||
await db.remove_system(conn, system_id=system["id"])
|
await db.remove_system(conn, system_id=system["id"])
|
||||||
return True, "System deleted."
|
return True, "System deleted."
|
||||||
else:
|
else:
|
||||||
@ -356,7 +356,7 @@ async def member_delete(conn, message, member, args):
|
|||||||
await client.send_message(message.channel, "Are you sure you want to delete {}? If so, reply to this message with the member's ID (`{}`).".format(member["name"], member["hid"]))
|
await client.send_message(message.channel, "Are you sure you want to delete {}? If so, reply to this message with the member's ID (`{}`).".format(member["name"], member["hid"]))
|
||||||
|
|
||||||
msg = await client.wait_for_message(author=message.author, channel=message.channel, timeout=60.0)
|
msg = await client.wait_for_message(author=message.author, channel=message.channel, timeout=60.0)
|
||||||
if msg.content == member["hid"]:
|
if msg and msg.content == member["hid"]:
|
||||||
await db.delete_member(conn, member_id=member["id"])
|
await db.delete_member(conn, member_id=member["id"])
|
||||||
return True, "Member deleted."
|
return True, "Member deleted."
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user