tangled
alpha
login
or
join now
edavis.dev
/
bsky-tools
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
fix(bsky-activity): check if commit exists
Eric Davis
1 year ago
262d912d
aad37bbe
+4
-1
1 changed file
expand all
collapse all
unified
split
bsky-activity.py
+4
-1
bsky-activity.py
···
65
65
if event['type'] != 'com':
66
66
continue
67
67
68
68
-
payload = event['commit']
68
68
+
payload = event.get('commit')
69
69
+
if payload is None:
70
70
+
continue
71
71
+
69
72
if payload['type'] != 'c':
70
73
continue
71
74