Workaround to detect empty dates in some Subsonic clients

This commit is contained in:
Deluan 2023-01-22 20:06:23 -05:00
parent d4c1d2ece4
commit 20271df4fb
1 changed files with 5 additions and 1 deletions

View File

@ -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 {