This commit is contained in:
Dag 2025-03-23 20:38:13 +01:00
parent 0f4ec8c096
commit 01e356d805

View File

@ -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;
}