Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fetcher/fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ type Folder struct {
func formatAddress(addr imap.Address) string {
email := addr.Addr()
if addr.Name != "" {
return addr.Name + " <" + email + ">"
return decodeHeader(addr.Name) + " <" + email + ">"
}
Comment on lines 134 to 138
Comment on lines 136 to 138

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it would be better to address this centrally in decodeHeader() in a separate PR, since decoded subjects already use the same helper.
I'll keep this PR focused on applying the existing decoder to address display names.

return email
}
Expand Down
Loading