Skip to content

Commit a83865b

Browse files
committed
Add check for null request body
1 parent 5b809ed commit a83865b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/activity/events.jl

+4
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,10 @@ function handle_comment(handle, event::WebhookEvent, auth::Authorization,
191191
end
192192
end
193193

194+
if body_container["body"] === nothing
195+
return HTTP.Response(204, "trigger match not found")
196+
end
197+
194198
trigger_match = match(trigger, body_container["body"])
195199

196200
if trigger_match === nothing

0 commit comments

Comments
 (0)