Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: payload for sendmessage to prevent upsert user #274

Merged
merged 2 commits into from
Apr 5, 2024
Merged
Changes from 1 commit
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
6 changes: 4 additions & 2 deletions message.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ type Message struct {
Silent bool `json:"silent,omitempty"`

User *User `json:"user"`
UserID string `json:"user_id"`
Attachments []*Attachment `json:"attachments"`
LatestReactions []*Reaction `json:"latest_reactions"` // last reactions
OwnReactions []*Reaction `json:"own_reactions"`
Expand Down Expand Up @@ -94,7 +95,7 @@ func (m *Message) toRequest() messageRequest {
Text: m.Text,
Type: m.Type,
Attachments: m.Attachments,
User: messageRequestUser{ID: m.User.ID},
UserID: m.UserID,
ExtraData: m.ExtraData,
Pinned: m.Pinned,
ParentID: m.ParentID,
Expand Down Expand Up @@ -127,7 +128,7 @@ type messageRequestMessage struct {
Text string `json:"text"`
Type MessageType `json:"type" validate:"omitempty,oneof=system"`
Attachments []*Attachment `json:"attachments"`
User messageRequestUser `json:"user"`
UserID string `json:"user_id"`
MentionedUsers []string `json:"mentioned_users"`
ParentID string `json:"parent_id"`
ShowInChannel bool `json:"show_in_channel"`
Expand Down Expand Up @@ -257,6 +258,7 @@ func (ch *Channel) SendMessage(ctx context.Context, message *Message, userID str
}

message.User = &User{ID: userID}
message.UserID = userID
p := path.Join("channels", url.PathEscape(ch.Type), url.PathEscape(ch.ID), "message")

req := message.toRequest()
Expand Down
Loading