From fc41d9200c0e3a4e7835a587cbee868ac898b565 Mon Sep 17 00:00:00 2001 From: bencroker Date: Mon, 23 Sep 2024 14:11:47 +0200 Subject: [PATCH] Fix #494 --- src/records/ContactMailingListRecord.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/records/ContactMailingListRecord.php b/src/records/ContactMailingListRecord.php index 6e44d0c1..1ba48c00 100644 --- a/src/records/ContactMailingListRecord.php +++ b/src/records/ContactMailingListRecord.php @@ -46,7 +46,6 @@ public static function find(): ActiveQuery ->innerJoin(Table::ELEMENTS . ' contactElement', '[[contactElement.id]] = [[contactId]]') ->innerJoin(Table::ELEMENTS . ' mailingListElement', '[[mailingListElement.id]] = [[mailingListId]]') ->where([ - 'contactElement.draftId' => null, 'contactElement.dateDeleted' => null, 'mailingListElement.dateDeleted' => null, ]);