Remove stuttering

This commit is contained in:
Deluan 2020-01-11 17:08:10 -05:00
parent 8c1975b70f
commit 23e080bc15
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ import (
"github.com/go-chi/chi" "github.com/go-chi/chi"
) )
const ApiVersion = "1.8.0" const Version = "1.8.0"
type SubsonicHandler = func(http.ResponseWriter, *http.Request) (*responses.Subsonic, error) type SubsonicHandler = func(http.ResponseWriter, *http.Request) (*responses.Subsonic, error)
@ -131,7 +131,7 @@ func addEndpoint(r chi.Router, path string, f SubsonicHandler) {
} }
func SendError(w http.ResponseWriter, r *http.Request, err error) { func SendError(w http.ResponseWriter, r *http.Request, err error) {
response := &responses.Subsonic{Version: ApiVersion, Status: "fail"} response := &responses.Subsonic{Version: Version, Status: "fail"}
code := responses.ErrorGeneric code := responses.ErrorGeneric
if e, ok := err.(SubsonicError); ok { if e, ok := err.(SubsonicError); ok {
code = e.code code = e.code

View File

@ -13,7 +13,7 @@ import (
) )
func NewEmpty() *responses.Subsonic { func NewEmpty() *responses.Subsonic {
return &responses.Subsonic{Status: "ok", Version: ApiVersion} return &responses.Subsonic{Status: "ok", Version: Version}
} }
func RequiredParamString(r *http.Request, param string, msg string) (string, error) { func RequiredParamString(r *http.Request, param string, msg string) (string, error) {