responderror auto sprintf

This commit is contained in:
sentriz
2019-05-28 15:07:58 +01:00
parent 74c55bd509
commit e7ed19abd9
5 changed files with 13 additions and 18 deletions

View File

@@ -1,7 +1,6 @@
package handler
import (
"fmt"
"net/http"
"github.com/jinzhu/gorm"
@@ -126,9 +125,8 @@ func (c *Controller) GetAlbumList(w http.ResponseWriter, r *http.Request) {
user.ID)
q = q.Order("plays.time DESC")
default:
respondError(w, r, 10, fmt.Sprintf(
"unknown value `%s` for parameter 'type'", listType,
))
respondError(w, r, 10,
"unknown value `%s` for parameter 'type'", listType)
return
}
var folders []model.Folder