cgit

commit 73ac0fb6f217addbcd7878828407392418c973de

Author: Rémi Lagacé <rlagace@cld.ca>

Reencode author and committer

When a commit has a specific encoding, this encoding also applies to
the author and committer name and email.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>

 parsing.c | 4 ++++


diff --git a/parsing.c b/parsing.c
index f3f3b15f736521f267e87dd474fee0af5c961250..f37c49d261765636cfef652faec3be8baf6d2894 100644
--- a/parsing.c
+++ b/parsing.c
@@ -190,6 +190,10 @@ 	} else
 		ret->subject = xstrdup(p);
 
 	if (ret->msg_encoding) {
+		reencode(&ret->author, PAGE_ENCODING, ret->msg_encoding);
+		reencode(&ret->author_email, PAGE_ENCODING, ret->msg_encoding);
+		reencode(&ret->committer, PAGE_ENCODING, ret->msg_encoding);
+		reencode(&ret->committer_email, PAGE_ENCODING, ret->msg_encoding);
 		reencode(&ret->subject, PAGE_ENCODING, ret->msg_encoding);
 		reencode(&ret->msg, PAGE_ENCODING, ret->msg_encoding);
 	}