···7373.env:
7474 if [ ! -f ".env" ]; then cp example.dev.env .env; fi
75757676+.PHONY: run-postgres
7777+run-postgres: .env ## Runs a local postgres instance
7878+ docker compose -f cmd/bigsky/docker-compose.yml up -d
7979+7680.PHONY: run-dev-bgs
7781run-dev-bgs: .env ## Runs 'bigsky' BGS for local dev
7882 GOLOG_LOG_LEVEL=info go run ./cmd/bigsky --admin-key localdev
···162162 // Maybe we could do something with this response later
163163 _ = desc
164164165165- return s.slurper.SubscribeToPds(ctx, host, true)
165165+ return s.slurper.SubscribeToPds(ctx, host, true, false)
166166}
167167168168func (s *BGS) handleComAtprotoSyncNotifyOfUpdate(ctx context.Context, body *comatprototypes.SyncNotifyOfUpdate_Input) error {