fix: raw message in post is an array instead of a scalar

This commit is contained in:
JT Smith 2007-05-09 15:24:45 +00:00
parent 69a7126787
commit 159badc849
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ use Apache2::Const -compile => qw(OK DECLINED NOT_FOUND DIR_MAGIC_TYPE);
use Apache2::ServerUtil ();
use LWP::MediaTypes qw(guess_media_type);
our $VERSION = "7.3.16";
our $VERSION = "7.3.17";
our $STATUS = "stable";
#-------------------------------------------------------------------

View file

@ -115,7 +115,7 @@ sub addPost {
content=>$content,
ownerUserId=>$user->userId,
username=>$user->profileField("alias") || $user->username,
originalEmail=>$message->{rawMessage}
originalEmail=>join("",@{$message->{rawMessage}})
});
if (scalar(@attachments)) {
my $storage = $post->getStorageLocation;