From 32a9856486358de2c5e05f02ca6598c1f826c5a1 Mon Sep 17 00:00:00 2001 From: bryan newbold Date: Thu, 14 Sep 2023 18:45:30 -0700 Subject: [PATCH] palomar: RawQuery typo --- search/firehose.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/firehose.go b/search/firehose.go index e97638fae..6f6612a1e 100644 --- a/search/firehose.go +++ b/search/firehose.go @@ -59,7 +59,7 @@ func (s *Server) RunIndexer(ctx context.Context) error { } u.Path = "xrpc/com.atproto.sync.subscribeRepos" if cur != 0 { - u.RawPath = fmt.Sprintf("cursor=%d", cur) + u.RawQuery = fmt.Sprintf("cursor=%d", cur) } con, _, err := d.Dial(u.String(), http.Header{}) if err != nil {