Skip to content

Commit f457faa

Browse files
committed
Uses Fprint instead of Fprintf
Fprintf causes rendering errors because it expects to interpret specific characters strings, e.g. %2B, and replace with variables. When these variables don't exist, `(MISSING)` is printed.
1 parent ad925bc commit f457faa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func handler(w http.ResponseWriter, r *http.Request) {
9494
newLine := "\n"
9595

9696
// Write frames
97-
fmt.Fprintf(w, clearScreen+frames.GetFrame(i)+newLine)
97+
fmt.Fprint(w, clearScreen+frames.GetFrame(i)+newLine)
9898
i++
9999

100100
// Send some data.

0 commit comments

Comments
 (0)