mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-07-16 14:52:35 -05:00
The manual date fallback in parseTimeFromUserInput parses dates like 2022-11-1, but `year, err :=` shadowed the named err return. On a successful manual parse the function returned a valid time alongside the stale error from the earlier failed layout attempts, so filters such as `due_date = 2022-11-1` were rejected as invalid. Assign to the named return so success clears the error. Co-Authored-By: Claude <noreply@anthropic.com>