this repo has no description

track social.psky.feed.post

as promised: at://did:plc:4nsduwlpivpuur4mqkbfvm6a/social.psky.feed.post/3l5pg3hvpal22

+5 -1
+5 -1
bsky-activity.py
··· 28 'chat.bsky.actor.declaration', 29 ]) 30 31 async def bsky_activity(): 32 relay_url = 'ws://localhost:6008/subscribe' 33 ··· 73 continue 74 75 collection = payload['collection'] 76 - if collection not in app_bsky_allowlist: 77 continue 78 79 repo_did = event['did']
··· 28 'chat.bsky.actor.declaration', 29 ]) 30 31 + other_allowlist = set([ 32 + 'social.psky.feed.post', 33 + ]) 34 + 35 async def bsky_activity(): 36 relay_url = 'ws://localhost:6008/subscribe' 37 ··· 77 continue 78 79 collection = payload['collection'] 80 + if collection not in app_bsky_allowlist | other_allowlist: 81 continue 82 83 repo_did = event['did']