this repo has no description

fix(bsky-activity): check if commit exists

+4 -1
+4 -1
bsky-activity.py
··· 65 if event['type'] != 'com': 66 continue 67 68 - payload = event['commit'] 69 if payload['type'] != 'c': 70 continue 71
··· 65 if event['type'] != 'com': 66 continue 67 68 + payload = event.get('commit') 69 + if payload is None: 70 + continue 71 + 72 if payload['type'] != 'c': 73 continue 74