Skip to content

Commit

Permalink
add messageReplyOption to endpoint to support threaded replies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermarston committed Feb 21, 2024
1 parent c6ddc98 commit 5935a78
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/providers/google_chat/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ func (m *GoogleChatManager) sendMessage(msg ChatMessage, threadKey string) error
}
q := u.Query()
q.Set("threadKey", threadKey)
q.Set("messageReplyOption", "REPLY_MESSAGE_FALLBACK_TO_NEW_THREAD")
u.RawQuery = q.Encode()
endpoint := u.String()

Expand Down

0 comments on commit 5935a78

Please sign in to comment.