mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
lint
This commit is contained in:
parent
0f4ec8c096
commit
01e356d805
@ -192,13 +192,11 @@ class RedditBridge extends BridgeAbstract
|
||||
if ($data->num_comments < $min_comments || $data->score < $min_score) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
else if ($min_score >= 0) {
|
||||
} elseif ($min_score >= 0) {
|
||||
if ($data->score < $min_score) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
else if ($min_comments >= 0) {
|
||||
} elseif ($min_comments >= 0) {
|
||||
if ($data->num_comments < $min_comments) {
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user