mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59: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) {
|
if ($data->num_comments < $min_comments || $data->score < $min_score) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
} elseif ($min_score >= 0) {
|
||||||
else if ($min_score >= 0) {
|
|
||||||
if ($data->score < $min_score) {
|
if ($data->score < $min_score) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
} elseif ($min_comments >= 0) {
|
||||||
else if ($min_comments >= 0) {
|
|
||||||
if ($data->num_comments < $min_comments) {
|
if ($data->num_comments < $min_comments) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user