···135135 .eq("uri", evt.uri.toString());
136136 }
137137 }
138138- if (evt.collection === ids.AppBskyActorProfile) {
139139- //only listen to updates because we should fetch it for the first time when they subscribe!
140140- if (evt.event === "update") {
141141- await supabaseServerClient
142142- .from("bsky_profiles")
143143- .update({ record: evt.record as Json })
144144- .eq("did", evt.did);
145145- }
146146- }
138138+ // if (evt.collection === ids.AppBskyActorProfile) {
139139+ // //only listen to updates because we should fetch it for the first time when they subscribe!
140140+ // if (evt.event === "update") {
141141+ // await supabaseServerClient
142142+ // .from("bsky_profiles")
143143+ // .update({ record: evt.record as Json })
144144+ // .eq("did", evt.did);
145145+ // }
146146+ // }
147147 if (evt.collection === "app.bsky.feed.post") {
148148 if (evt.event !== "create") return;
149149···224224 ids.PubLeafletDocument,
225225 ids.PubLeafletPublication,
226226 ids.PubLeafletGraphSubscription,
227227- ids.AppBskyActorProfile,
227227+ // ids.AppBskyActorProfile,
228228 "app.bsky.feed.post",
229229 ],
230230 handleEvent: timedHandleEvent,