Fix incorrect parenthesis placement in `count()`.

This commit is contained in:
JustAMacUser 2020-10-29 00:52:07 -04:00
parent 0a6ff72e70
commit f782ee46ad
1 changed files with 1 additions and 1 deletions

View File

@ -864,7 +864,7 @@ class RSSUtils {
if (Debug::get_loglevel() >= Debug::$LOG_EXTENDED) {
Debug::log("matched filters: ", Debug::$LOG_VERBOSE);
if (count($matched_filters != 0)) {
if (count($matched_filters) != 0) {
print_r($matched_filters);
}