summaryrefslogtreecommitdiff
path: root/internal/handlers/agent.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/handlers/agent.go')
-rw-r--r--internal/handlers/agent.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/handlers/agent.go b/internal/handlers/agent.go
index 15715bc..b285520 100644
--- a/internal/handlers/agent.go
+++ b/internal/handlers/agent.go
@@ -322,7 +322,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, nil, start, end)
+ timelineItems, err := BuildTimeline(ctx, h.store, nil, start, end)
if err != nil {
return nil
}