More comprehensible check for root user contact

pull/1525/head
Matthew Exon 2024-07-09 20:13:00 +01:00 committed by Matthew Exon
parent 4e5998c73d
commit f3db763c59
1 changed files with 4 additions and 4 deletions

View File

@ -144,12 +144,12 @@ function mailstream_post_hook(array &$item)
{ {
mailstream_check_version(); mailstream_check_version();
if (!DI::pConfig()->get($item['uid'], 'mailstream', 'enabled')) { if ($item['uid'] === 0) {
Logger::debug('mailstream not enabled.', ['item' => $item['id'], 'uid' => $item['uid']]); Logger::debug('mailstream: root user, skipping item ' . $item['id']);
return; return;
} }
if (!$item['uid']) { if (!DI::pConfig()->get($item['uid'], 'mailstream', 'enabled')) {
Logger::debug('no uid', ['item' => $item['id']]); Logger::debug('mailstream: not enabled.', ['item' => $item['id'], ' uid ' => $item['uid']]);
return; return;
} }
if (!$item['contact-id']) { if (!$item['contact-id']) {