Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Change response when no errors found #48

Closed
wants to merge 5 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions reaper/cogs/log_reading.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,9 +440,11 @@ async def on_message(self, message):
await dm_me.send(embed=dm_log)
else:
await dm_me.send(
f"I failed to respond to a log! The log can be found here: {message.jump_url}"
f"I processed a log and found no errors! The log can be found here: {message.jump_url}"
)
await message.reply(
"Sorry, I scanned this log but I didn't find any common issues. Please wait for a human to assist you."
)
await message.channel.send("I failed to respond to the log properly!")

dm_log.clear_fields()
audio_duplicates_list.clear()
Expand Down
Loading