From bb979e9e0865991806f0d2cf1c55044168bcf586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Wr=C3=B3bel?= Date: Tue, 2 Apr 2024 00:06:15 +0200 Subject: [PATCH] [AllegroBridge] fix logical condition on parameters (#4049) --- bridges/AllegroBridge.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridges/AllegroBridge.php b/bridges/AllegroBridge.php index 04121257..55e9f116 100644 --- a/bridges/AllegroBridge.php +++ b/bridges/AllegroBridge.php @@ -81,11 +81,11 @@ class AllegroBridge extends BridgeAbstract $results = $html->find('article[data-analytics-view-custom-context="REGULAR"]'); - if (!$this->getInput('includeSponsoredOffers')) { + if ($this->getInput('includeSponsoredOffers')) { $results = array_merge($results, $html->find('article[data-analytics-view-custom-context="SPONSORED"]')); } - if (!$this->getInput('includePromotedOffers')) { + if ($this->getInput('includePromotedOffers')) { $results = array_merge($results, $html->find('article[data-analytics-view-custom-context="PROMOTED"]')); }