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
if event['type'] != 'com':
66
continue
67
68
-
payload = event['commit']
0
0
0
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