diff options
Diffstat (limited to 'app/Models/Entry.php')
| -rw-r--r-- | app/Models/Entry.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 441730af2..adb208276 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -817,7 +817,7 @@ HTML; if (!empty($feed->attributeArray('path_entries_condition'))) { $found = false; foreach ($feed->attributeArray('path_entries_condition') as $condition) { - if (trim($condition) === '') { + if (!is_string($condition) || trim($condition) === '') { continue; } $booleanSearch = new FreshRSS_BooleanSearch($condition); |
