A third party ATProto appview

worker fix

+6 -1
+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 + 889 + elif record_type == "app.bsky.actor.status": 890 + # Actor status records (online/away/custom status) 891 + # For now just log - we don't store these 892 + logger.debug(f"Processed actor status: {uri}") 893 + 889 894 elif record_type == "app.bsky.graph.list": 890 895 await self.process_list(conn, uri, cid, repo, record) 891 896