mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-19 13:27:42 +03:00
Workaround to detect empty dates in some Subsonic clients
This commit is contained in:
parent
d4c1d2ece4
commit
20271df4fb
@ -49,7 +49,11 @@ func ParamTime(r *http.Request, param string, def time.Time) time.Time {
|
||||
if err != nil {
|
||||
return def
|
||||
}
|
||||
return ToTime(value)
|
||||
t := ToTime(value)
|
||||
if t.Before(time.Date(1970, time.January, 2, 0, 0, 0, 0, time.UTC)) {
|
||||
return def
|
||||
}
|
||||
return t
|
||||
}
|
||||
|
||||
func ParamInt(r *http.Request, param string, def int) int {
|
||||
|
Loading…
x
Reference in New Issue
Block a user