mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
[AllegroBridge] fix logical condition on parameters (#4049)
This commit is contained in:
parent
a12bab9eed
commit
bb979e9e08
@ -81,11 +81,11 @@ class AllegroBridge extends BridgeAbstract
|
|||||||
|
|
||||||
$results = $html->find('article[data-analytics-view-custom-context="REGULAR"]');
|
$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"]'));
|
$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"]'));
|
$results = array_merge($results, $html->find('article[data-analytics-view-custom-context="PROMOTED"]'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user