fix optin and optout respond having mrkdown flag which doesnt exist

This commit is contained in:
csd4ni3l
2025-12-15 17:55:02 +01:00
parent 1f9070c46f
commit 010f3bca0d

4
app.py
View File

@@ -93,7 +93,7 @@ def optin(ack, respond, command):
file.write(json.dumps(optouts, indent=4)) file.write(json.dumps(optouts, indent=4))
respond( respond(
text="You have succesfully opted back in owo >:3", mrkdwn=False text="You have succesfully opted back in owo >:3"
) )
@app.command("/optout") @app.command("/optout")
@@ -106,7 +106,7 @@ def optout(ack, respond, command):
file.write(json.dumps(optouts, indent=4)) file.write(json.dumps(optouts, indent=4))
respond( respond(
text="You have succesfully opted out nyaaa >:c", mrkdwn=False text="You have succesfully opted out nyaaa >:c"
) )
@app.command("/catify") @app.command("/catify")