We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea85c66 + a8a5698 commit 4700bfeCopy full SHA for 4700bfe
1 file changed
tgwebapp/webapp_http_handler.go
@@ -75,7 +75,7 @@ func getDataCheckString(values url.Values) string {
75
if i > 0 {
76
s.WriteByte('\n')
77
}
78
- s.WriteString(fmt.Sprintf("%s=%s", k, values.Get(k)))
+ fmt.Fprintf(&s, "%s=%s", k, values.Get(k))
79
80
return s.String()
81
0 commit comments