]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WwwAttach.pm
treewide: run update-copyrights from gnulib for 2019
[public-inbox.git] / lib / PublicInbox / WwwAttach.pm
index cda1c6c8db3a0745e8ad28a1cffaad05e10de6cf..f795618ebcfce92dabba15eb1f6bc323a0bbac91 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 # For retrieving attachments from messages in the WWW interface
@@ -40,7 +40,7 @@ sub get_attach ($$$) {
        my $mime = $ctx->{-inbox}->msg_by_mid($ctx->{mid}) or return $res;
        $mime = PublicInbox::MIME->new($mime);
        $res->[3] = $idx;
-       msg_iter($mime, \&get_attach_i, $res);
+       msg_iter($mime, \&get_attach_i, $res, 1);
        pop @$res; # cleanup before letting PSGI server see it
        $res
 }