aboutsummaryrefslogtreecommitdiffstats
path: root/include/import.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-01-14 10:14:44 +0100
committerMario Vavti <mario@mariovavti.com>2019-01-14 10:14:44 +0100
commit65f2d7fd66103923733a93e7c476939d02b5ce28 (patch)
tree289710273a8beb363fce758d7b02052c64718a83 /include/import.php
parentf3554804bfe5bf88984bce925470934429567516 (diff)
parente78fd09e07f8c8be082c7c968969ef2c9a685511 (diff)
downloadvolse-hubzilla-65f2d7fd66103923733a93e7c476939d02b5ce28.tar.gz
volse-hubzilla-65f2d7fd66103923733a93e7c476939d02b5ce28.tar.bz2
volse-hubzilla-65f2d7fd66103923733a93e7c476939d02b5ce28.zip
Merge branch 'dev' into core_fixes
Diffstat (limited to 'include/import.php')
-rw-r--r--include/import.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/import.php b/include/import.php
index 53b21c317..3bd8b4105 100644
--- a/include/import.php
+++ b/include/import.php
@@ -1035,8 +1035,9 @@ function import_mail($channel, $mails, $sync = false) {
if(! $m)
continue;
- $m['aid'] = $channel['channel_account_id'];
- $m['uid'] = $channel['channel_id'];
+ $m['account_id'] = $channel['channel_account_id'];
+ $m['channel_id'] = $channel['channel_id'];
+
$mail_id = mail_store($m);
if($sync && $mail_id) {
Zotlabs\Daemon\Master::Summon(array('Notifier','single_mail',$mail_id));