mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Polishing
This commit is contained in:
parent
b3215f057f
commit
c87b133071
17 changed files with 74 additions and 69 deletions
|
@ -22,7 +22,7 @@ func (c *BaseAPIController) NewEmpty() responses.Subsonic {
|
|||
func (c *BaseAPIController) RequiredParamString(param string, msg string) string {
|
||||
p := c.Input().Get(param)
|
||||
if p == "" {
|
||||
c.SendError(responses.ERROR_MISSING_PARAMETER, msg)
|
||||
c.SendError(responses.ErrorMissingParameter, msg)
|
||||
}
|
||||
return p
|
||||
}
|
||||
|
@ -30,7 +30,7 @@ func (c *BaseAPIController) RequiredParamString(param string, msg string) string
|
|||
func (c *BaseAPIController) RequiredParamStrings(param string, msg string) []string {
|
||||
ps := c.Input()[param]
|
||||
if len(ps) == 0 {
|
||||
c.SendError(responses.ERROR_MISSING_PARAMETER, msg)
|
||||
c.SendError(responses.ErrorMissingParameter, msg)
|
||||
}
|
||||
return ps
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue