1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00

message, webui: Fix QP address rendering, closes #117

This commit is contained in:
James Hillyerd
2019-01-01 10:04:37 -08:00
parent c0a878db47
commit dbdc60a0fb
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ func MailboxMessage(w http.ResponseWriter, req *http.Request, ctx *web.Context)
&jsonMessage{
Mailbox: name,
ID: msg.ID,
From: msg.From.String(),
From: stringutil.StringAddress(msg.From),
To: stringutil.StringAddressList(msg.To),
Subject: msg.Subject,
Date: msg.Date,