mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-04-28 02:18:08 -05:00
The go-datemath lexer panics with "scanner internal error" when given certain malformed inputs like "no" (it starts recognizing "now" but hits EOF). Wrap datemath.Parse in a recover so the panic becomes a regular error, allowing the fallback date parser to handle it gracefully. Closes go-vikunja/vikunja#2307