Skip to content

Commit

Permalink
Merge pull request #73 from alexandermarston/messageReplyOption
Browse files Browse the repository at this point in the history
add messageReplyOption to endpoint to support threaded replies
  • Loading branch information
mr-karan committed Feb 22, 2024
2 parents c6ddc98 + 5935a78 commit b3a5468
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 b3a5468

Please sign in to comment.