From 39671fcfc160f88eced8ae6f137028ba79006aeb Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 20 Feb 2019 16:46:35 -0800 Subject: [PATCH] modules/webhook: Add inside
 for visibility with
 Riot dark theme.

---
 modules/webhook.cc | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/modules/webhook.cc b/modules/webhook.cc
index 92d92fd95..d33567c71 100644
--- a/modules/webhook.cc
+++ b/modules/webhook.cc
@@ -293,7 +293,7 @@ github_handle__push(std::ostream &out,
 	if(content["forced"] == "true")
 		out << " (rebase)";
 
-	out << "
";
+	out << "
";
 	for(ssize_t i(count - 1); i >= 0; --i)
 	{
 		const json::object &commit(commits.at(i));
@@ -330,7 +330,7 @@ github_handle__push(std::ostream &out,
 		out << "
"; } - out << "
"; + out << "
"; return out; } @@ -443,7 +443,7 @@ github_handle__pull_request(std::ostream &out, }; out << " " - << "
"
+	    << "
"
 	    << ""
@@ -455,7 +455,7 @@ github_handle__pull_request(std::ostream &out,
 	    << ""
 	    << unquote(pr["title"])
 	    << ""
-	    << "
" + << "
" ; return out; @@ -512,7 +512,7 @@ github_handle__issues(std::ostream &out, { out << " " << "
" - << "
"
+		    << "
"
 		    ;
 
 		static const auto delim("\\r\\n");
@@ -528,7 +528,7 @@ github_handle__issues(std::ostream &out,
 		while(!empty(lines.second));
 
 		out << ""
-		    << "
" + << "
" << "
" ; } @@ -558,9 +558,9 @@ std::ostream & github_handle__ping(std::ostream &out, const json::object &content) { - out << "
"
+	out << "
"
 	    << unquote(content["zen"])
-	    << "
"; + << "
"; return out; }