Commit 80d9d70b authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 322712: Cannot export local attachments (attachments are truncated) - Patch…

Bug 322712: Cannot export local attachments (attachments are truncated) - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
parent 645e95ab
......@@ -304,6 +304,7 @@ sub data {
# in a local file, so retrieve it from there.
if (length($self->{data}) == 0) {
if (open(AH, $self->_get_local_filename())) {
local $/;
binmode AH;
$self->{data} = <AH>;
close(AH);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment