diff --git a/api/api.go b/api/api.go index da784310f..d9d5b92b4 100644 --- a/api/api.go +++ b/api/api.go @@ -12,7 +12,7 @@ import ( "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) @@ -131,7 +131,7 @@ func addEndpoint(r chi.Router, path string, f SubsonicHandler) { } 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 if e, ok := err.(SubsonicError); ok { code = e.code diff --git a/api/helpers.go b/api/helpers.go index 1a0d96dc2..8f5495f9f 100644 --- a/api/helpers.go +++ b/api/helpers.go @@ -13,7 +13,7 @@ import ( ) 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) {