You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix 3 defects in insight engine v3 intraday analyzers
1. Blacklist query error handling: log warning if insight_engine_blacklist
table is missing instead of silently ignoring (pattern-spotter.ts)
2. Fix double-Z timestamp bug in sequential-change-analyzer: appending "Z"
to localTimestamp that already ends with "Z" (from glucose display_time)
produced "...ZZ" → NaN, silently breaking dawn phenomenon detection for
CGM users
3. Standardize Z-suffix handling across all 4 intraday analyzers: use
conditional append (ts.endsWith("Z") ? ts : ts + "Z") so hour extraction
works correctly in both UTC production runtime and non-UTC dev environments
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments