Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Changes from all 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
2 changes: 2 additions & 0 deletions src/dispatch/plugins/dispatch_slack/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ def add_users_to_conversation_thread(
"""Adds user to a threaded conversation."""
users = [f"<@{user_id}>" for user_id in user_ids]
if users:
# @'ing them isn't enough if they aren't already in the channel
add_users_to_conversation(client=client, conversation_id=conversation_id, user_ids=user_ids)
blocks = Message(
blocks=[
Section(text="Looping in individuals to help resolve this case...", fields=users)
Expand Down