From 1c4f38e552fc1b0ca23ac35cec53cca7856492a4 Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Fri, 8 Mar 2024 14:41:55 +0100 Subject: [PATCH] feat: handle cookies --- integration/watermill/gtm/publisher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/watermill/gtm/publisher.go b/integration/watermill/gtm/publisher.go index f921875..d278e17 100644 --- a/integration/watermill/gtm/publisher.go +++ b/integration/watermill/gtm/publisher.go @@ -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 {