tangled
alpha
login
or
join now
dollspace.gay
/
Aurora-Prism
4
fork
atom
A third party ATProto appview
4
fork
atom
overview
issues
pulls
pipelines
worker fix
dollspacegay.tngl.sh
4 months ago
86b57149
8916c608
+6
-1
1 changed file
expand all
collapse all
unified
split
python-firehose
redis_consumer_worker.py
+6
-1
python-firehose/redis_consumer_worker.py
···
885
885
886
886
elif record_type == "app.bsky.actor.profile":
887
887
await self.process_profile(conn, repo, record)
888
888
-
888
888
+
889
889
+
elif record_type == "app.bsky.actor.status":
890
890
+
# Actor status records (online/away/custom status)
891
891
+
# For now just log - we don't store these
892
892
+
logger.debug(f"Processed actor status: {uri}")
893
893
+
889
894
elif record_type == "app.bsky.graph.list":
890
895
await self.process_list(conn, uri, cid, repo, record)
891
896