Browse Source

[GIN] Missing err check in suggest.go

M. Sonntag 4 years ago
parent
commit
a059c781ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/route/suggest.go

+ 1 - 1
internal/route/suggest.go

@@ -32,5 +32,5 @@ func ExploreSuggest(c *context.Context) {
 		return
 	}
 
-	c.Write(data)
+	_, _ = c.Write(data)
 }