mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-23 23:16:53 +00:00
filter may not be null if '&filter=&' appears in request?
This commit is contained in:
parent
8e926dfaf9
commit
b26a621afd
@ -166,7 +166,7 @@ class TwitterBridge extends BridgeAbstract {
|
||||
switch($this->queriedContext) {
|
||||
case 'By list':
|
||||
// Check if filter applies to list (using raw content)
|
||||
if(!is_null($this->getInput('filter'))) {
|
||||
if($this->getInput('filter')) {
|
||||
if(stripos($tweet->find('p.js-tweet-text', 0)->plaintext, $this->getInput('filter')) === false) {
|
||||
continue 2; // switch + for-loop!
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user