The only reason we don't defer is when it was a post to a relay

This commit is contained in:
Michael 2019-06-01 11:28:37 +00:00
parent bbac95d692
commit 9f026f1814
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ class Delivery extends BaseObject
// The message could not be delivered. We mark the contact as "dead"
Model\Contact::markForArchival($contact);
if (!empty($contact['contact-type']) && ($contact['contact-type'] != Model\Contact::TYPE_RELAY)) {
if (empty($contact['contact-type']) || ($contact['contact-type'] != Model\Contact::TYPE_RELAY)) {
Logger::info('Delivery failed: defer message', ['id' => defaults($target_item, 'guid', $target_item['id'])]);
// defer message for redelivery
Worker::defer();