Skip to content

Commit

Permalink
fixed HTTP 500 error when opening a pull request, fixes #95
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomis committed Aug 23, 2015
1 parent 712aeaf commit 791a4b1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ class HookStringification {
result << format(json, "%repository% %sender% created pull request $pr to merge $headStr into $baseStr")
} else {
format(json, "%repository% %sender% created pull request $pr to merge $headStr into $baseStr")
list << json.pull_request.body
String prBody = json.pull_request.body
result << prBody
}
break;
case "closed":
Expand Down

0 comments on commit 791a4b1

Please sign in to comment.