When forwarding an email, pre-load its attachments.
[citadel.git] / webcit-ng / static / js / view_mail.js
index 4e7635f041b980e5293a83d36ccf5b8ab20be1b3..f1596dcae7c5a5425cf08f080cd1c33ddf4ae799 100644 (file)
@@ -562,8 +562,10 @@ function mail_compose(references, quoted_msgnum, m_to, m_cc, m_subject) {
        if (is_quoted) {
                mail_display_message(quoted_msgnum, document.getElementById(quoted_div_name), 0);
        }
+
+       // If this is a forwarded messages, preload its attachments into the forwarded copy.
        if (is_fwd) {
-               console.log("FIXME we have to load the attachments from message " + quoted_msgnum);
+               forward_attachments(quoted_msgnum);
        }
 
        if (is_reply) {