mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 22:17:37 +03:00
Parse ParamBool case-insensitively (#1151)
This commit is contained in:
parent
bebfe296a5
commit
65ccd4c99d
2 changed files with 6 additions and 2 deletions
|
@ -84,7 +84,7 @@ func ParamInts(r *http.Request, param string) []int {
|
|||
}
|
||||
|
||||
func ParamBool(r *http.Request, param string, def bool) bool {
|
||||
p := ParamString(r, param)
|
||||
p := strings.ToLower(ParamString(r, param))
|
||||
if p == "" {
|
||||
return def
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue