We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146628e commit fcbe0a5Copy full SHA for fcbe0a5
backend/onyx/onyxbot/slack/handlers/handle_regular_answer.py
@@ -88,8 +88,8 @@ def handle_regular_answer(
88
# the message is a dm with the Onyx bot.
89
send_as_ephemeral = (
90
slack_channel_config.channel_config.get("is_ephemeral", False)
91
- and not message_info.is_bot_dm
92
- )
+ or message_info.is_bot_msg
+ ) and not message_info.is_bot_dm
93
94
# If the channel mis configured to respond with an ephemeral message,
95
# or the message is a dm to the Onyx bot, we should use the proper onyx user from the email.
0 commit comments