From 23f75dc0c49e553e9c50446602fa000506dbadd0 Mon Sep 17 00:00:00 2001 From: Vladimir Dementyev Date: Fri, 22 Mar 2024 21:31:12 -0700 Subject: [PATCH] fix(style): += --- broadcast/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/broadcast/http.go b/broadcast/http.go index 5e68bdf3..733935b9 100644 --- a/broadcast/http.go +++ b/broadcast/http.go @@ -137,7 +137,7 @@ func (s *HTTPBroadcaster) Start(done chan (error)) error { } if s.enableCORS { - verifiedVia = verifiedVia + ", CORS enabled" + verifiedVia += ", CORS enabled" } s.log.Info(fmt.Sprintf("Accept broadcast requests at %s%s (%s)", s.server.Address(), s.path, verifiedVia))