parse commit body to avoid npe

This commit is contained in:
Sebastian Sdorra
2012-09-20 11:08:12 +02:00
parent ca8aaddddc
commit 7404791b8d

View File

@@ -161,6 +161,8 @@ public class GitHookChangesetCollector
while (commit != null)
{
// parse commit body to avoid npe
walk.parseBody(commit);
Changeset changeset = converter.createChangeset(commit);
List<String> branches = changeset.getBranches();