minor export issue with mail

This commit is contained in:
zotlabs
2017-05-31 21:01:51 -07:00
parent 14229d0dd3
commit 8ebb000650
2 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -736,14 +736,14 @@ function identity_basic_export($channel_id, $sections = null) {
$ret['conv'] = $r;
}
$r = q("select * from mail where mail.uid = %d",
$r = q("select * from mail where channel_id = %d",
intval($channel_id)
);
if($r) {
$m = array();
foreach($r as $rr) {
xchan_mail_query($rr);
$m[] = mail_encode($rr,true);
$m[] = encode_mail($rr,true);
}
$ret['mail'] = $m;
}