diff --git a/modules/webhook.cc b/modules/webhook.cc index ba8557cce..da74a650b 100644 --- a/modules/webhook.cc +++ b/modules/webhook.cc @@ -298,11 +298,17 @@ github_handle__push(std::ostream &out, << ""; const json::object author(commit["author"]); - out << " " << unquote(author["name"]); + out << " " + << unquote(author["name"]) + << "" + ; const json::object committer(commit["committer"]); if(committer["email"] != author["email"]) - out << " via " << unquote(committer["name"]); + out << " via " + << unquote(committer["name"]) + << "" + ; const auto message(unquote(commit["message"])); const auto summary @@ -310,9 +316,9 @@ github_handle__push(std::ostream &out, split(message, "\\n").first }; - out << " " + out << " " << summary - << ""; + ; out << "
"; }