Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 85f590b4 authored by Michael Enoma's avatar Michael Enoma
Browse files

Set subject when forwarding a message as attachment

parent 77e1c804
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -66,7 +66,9 @@ public class MessageViewInfo {
    }

    public static MessageViewInfo createForMetadataOnly(Message message, boolean isMessageIncomplete) {
        return new MessageViewInfo(message, isMessageIncomplete, null, null, false, null, null, null, null, null, null);
        String subject = message.getSubject();
        return new MessageViewInfo(message, isMessageIncomplete, null, subject, false, null, null, null, null, null,
                null);
    }

    MessageViewInfo withCryptoData(CryptoResultAnnotation rootPartAnnotation, String extraViewableText,