From 663acae0c547908aed31e9d3aa84b5bce1d3b978 Mon Sep 17 00:00:00 2001 From: kim Date: Wed, 9 Apr 2025 15:51:55 +0100 Subject: [PATCH] sshhhh please linter, mommy's working --- internal/config/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/config/types.go b/internal/config/types.go index fd830e983..c2296975f 100644 --- a/internal/config/types.go +++ b/internal/config/types.go @@ -43,8 +43,8 @@ func (p *IPPrefixes) String() string { var buf byteutil.Buffer for _, prefix := range *p { str := prefix.String() - buf.WriteString(str) - buf.WriteByte(',') + buf.B = append(buf.B, str...) + buf.B = append(buf.B, ',') } buf.Truncate(1) return buf.String()