diff options
Diffstat (limited to 'internal/handlers/agent.go')
| -rw-r--r-- | internal/handlers/agent.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/handlers/agent.go b/internal/handlers/agent.go index 6d6079f..826ffd7 100644 --- a/internal/handlers/agent.go +++ b/internal/handlers/agent.go @@ -326,7 +326,7 @@ func (h *Handler) HandleAgentContext(w http.ResponseWriter, r *http.Request) { // buildAgentContext builds the context timeline by reusing BuildTimeline func (h *Handler) buildAgentContext(ctx context.Context, start, end time.Time) []agentContextItem { // Reuse the main BuildTimeline function (excludes live API calls for Google services) - timelineItems, err := BuildTimeline(ctx, h.store, nil, start, end) + timelineItems, err := BuildTimeline(ctx, h.store, start, end) if err != nil { return nil } |
