diff --git a/kdb-bot/src/modules/base/helper/base_reaction_handler.py b/kdb-bot/src/modules/base/helper/base_reaction_handler.py index 666f7c8a..8fd2fd28 100644 --- a/kdb-bot/src/modules/base/helper/base_reaction_handler.py +++ b/kdb-bot/src/modules/base/helper/base_reaction_handler.py @@ -52,6 +52,9 @@ class BaseReactionHandler: __name__, f"{log_msg} to message {LogMessageHelper.get_log_string(message)}", ) + if member == message.author: + self._logger.debug(__name__, f"Skipping reaction handling") + return except Exception as e: self._logger.error(__name__, f"Getting message for reaction logging failed", e) self._logger.info(__name__, f"{log_msg} to message {payload.message_id}")