Skip to content

Commit 4700bfe

Browse files
authored
Merge branch 'main' into renovate/3d-parties
2 parents ea85c66 + a8a5698 commit 4700bfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tgwebapp/webapp_http_handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func getDataCheckString(values url.Values) string {
7575
if i > 0 {
7676
s.WriteByte('\n')
7777
}
78-
s.WriteString(fmt.Sprintf("%s=%s", k, values.Get(k)))
78+
fmt.Fprintf(&s, "%s=%s", k, values.Get(k))
7979
}
8080
return s.String()
8181
}

0 commit comments

Comments
 (0)