diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-09-01 21:41:04 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-09-01 21:41:04 +0200 |
commit | b68fc991db17391b867507fa83966230fd0c0fea (patch) | |
tree | 920702df09e545180b3de8721858663c12fb0baf | |
parent | e5ddc89b091215293cdfe5afa84d7f2c5c601ce5 (diff) |
Don't use bug-originator with mu-header-decode.
-rw-r--r-- | mumi/web/view/html.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm index bb52376..2b5b6bb 100644 --- a/mumi/web/view/html.scm +++ b/mumi/web/view/html.scm @@ -213,7 +213,12 @@ (span (@ (class "details")) ,(status-tag bug) ,(string-append "Submitted by " - (extract-name (bug-originator bug)) + ;; We don't use bug-originator here + ;; because it includes the email address. + ;; We cannot use extract-name on the + ;; return value, because it swallows + ;; non-ASCII characters. + (sender-name (first messages)) "."))) (div (@ (class "row")) |