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

@ -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;