Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewHsu1 committed Jun 6, 2024
1 parent 2872e0d commit 8b4c5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ func (server *Server) postMatchedTargets() gin.HandlerFunc {
}

var data []byte
err := json.Unmarshal(data, &matchedTargets)
err = json.Unmarshal(data, &matchedTargets)
if err != nil {
println(err.Error())
}
Expand Down

0 comments on commit 8b4c5f1

Please sign in to comment.