From 412bf43ee19c2c413bcfb28c4145760b3e909d30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Thu, 14 Dec 2023 16:39:56 +0100 Subject: [PATCH] Update baggage.go --- baggage/baggage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baggage/baggage.go b/baggage/baggage.go index 8e669ce4426..c1f06fab18c 100644 --- a/baggage/baggage.go +++ b/baggage/baggage.go @@ -567,7 +567,7 @@ func parsePropertyInternal(s string) (p Property, ok bool) { // If we have not reached the end and we can't find the '=' delimiter, // it means the property is invalid. - if s[index] != keyValueDelimiter[0] { + if s[index] != keyValueDelimiter[0] { return }