mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
There's no good reason to exclude the Subject from the "full headers" view, especicially since we now play games with it sometimes showing up in the header and sometimes in the titlebar
This commit is contained in:
parent
c4b941b9b9
commit
82a8ac6278
@ -313,13 +313,8 @@ public class MessageHeader extends ScrollView implements OnClickListener {
|
||||
private List<HeaderEntry> getAdditionalHeaders(final Message message)
|
||||
throws MessagingException {
|
||||
List<HeaderEntry> additionalHeaders = new LinkedList<HeaderEntry>();
|
||||
/*
|
||||
* Remove "Subject" header as it is already shown in the standard
|
||||
* message view header. But do show "From", "To", and "Cc" again.
|
||||
* This time including the email addresses. See issue 1805.
|
||||
*/
|
||||
|
||||
Set<String> headerNames = new LinkedHashSet<String>(message.getHeaderNames());
|
||||
headerNames.remove("Subject");
|
||||
for (String headerName : headerNames) {
|
||||
String[] headerValues = message.getHeader(headerName);
|
||||
for (String headerValue : headerValues) {
|
||||
|
Loading…
Reference in New Issue
Block a user