Skip to content

Commit

Permalink
Fix misnamed keys
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Apr 9, 2018
1 parent 4ca98d8 commit 3ce1f5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Geth/GitHub/Hooks.pm6
Expand Up @@ -136,10 +136,10 @@ sub make-event ($e, :$event, :$query) {
}
when $event eq 'issues' and $e.<action> eq 'assigned' {
Event::Issues::Assigned.new: |%basics,
by => $e<sender><login>,
who => $e<assignee><login>,
url => $e<issue><html_url>,
title => $e<issue><title>,
sender => $e<sender><login>,
assignee => $e<assignee><login>,
url => $e<issue><html_url>,
title => $e<issue><title>,
;
}
when $event eq 'issues' and $e.<action> eq 'unassigned' {
Expand Down

0 comments on commit 3ce1f5f

Please sign in to comment.