From 010f3bca0dc98826aa2dc07fc1f512b3fda126a6 Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Mon, 15 Dec 2025 17:55:02 +0100 Subject: [PATCH] fix optin and optout respond having mrkdown flag which doesnt exist --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 454077d..f92d270 100644 --- a/app.py +++ b/app.py @@ -93,7 +93,7 @@ def optin(ack, respond, command): file.write(json.dumps(optouts, indent=4)) respond( - text="You have succesfully opted back in owo >:3", mrkdwn=False + text="You have succesfully opted back in owo >:3" ) @app.command("/optout") @@ -106,7 +106,7 @@ def optout(ack, respond, command): file.write(json.dumps(optouts, indent=4)) respond( - text="You have succesfully opted out nyaaa >:c", mrkdwn=False + text="You have succesfully opted out nyaaa >:c" ) @app.command("/catify")