Skip to content

Commit

Permalink
feat: handle cookies
Browse files Browse the repository at this point in the history
  • Loading branch information
franklinkim committed Mar 8, 2024
1 parent 18754b0 commit 1c4f38e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/watermill/gtm/publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (p *Publisher) Publish(topic string, messages ...*message.Message) error {
val := strings.Split(s3, "=")
req.AddCookie(&http.Cookie{
Name: val[0],
Value: val[1],
Value: strings.Join(val[1:], "="),
})
}
} else {
Expand Down

0 comments on commit 1c4f38e

Please sign in to comment.