Skip to content

Commit

Permalink
Re-enable sending Slack replies
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathansick committed Feb 28, 2024
1 parent e9bfec5 commit 16c9d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/unfurlbot/services/jiraunfurler.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async def unfurl_issue(
self._logger.debug(
"Formatted Jira unfurl", reply_message=reply_message.to_slack()
)
# await self.send_reply(reply_message) # noqa: ERA001
await self.send_reply(reply_message)

async def extract_issues(self, text: str) -> list[str]:
"""Extract issue keys from a Slack message."""
Expand Down
2 changes: 1 addition & 1 deletion src/unfurlbot/services/slackunfurler.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async def process_message(
original_message = json.loads(message.slack_event)
message_event = original_message["event"]
if "bot_id" in message_event and message_event["bot_id"] is not None:
self._logger.debug("Ignoring message from bot")
self._logger.info("Ignoring message from bot")
return

for unfurler in self._domain_unfurlers:
Expand Down

0 comments on commit 16c9d50

Please sign in to comment.