chore: unnecessary use of fmt.Sprintf

This commit is contained in:
guangwu 2023-11-16 01:10:52 +08:00 committed by GitHub
parent 36dff630d6
commit 005d6cf4cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,6 @@ package clashapi
import (
"context"
"fmt"
"net/http"
"sort"
"strconv"
@ -176,7 +175,7 @@ func updateProxy(w http.ResponseWriter, r *http.Request) {
if !selector.SelectOutbound(req.Name) {
render.Status(r, http.StatusBadRequest)
render.JSON(w, r, newError(fmt.Sprintf("Selector update error: not found")))
render.JSON(w, r, newError("Selector update error: not found"))
return
}