diff options
Diffstat (limited to 'app/Models/FeedDAO.php')
| -rw-r--r-- | app/Models/FeedDAO.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/FeedDAO.php b/app/Models/FeedDAO.php index e6e5d2940..a81c38eef 100644 --- a/app/Models/FeedDAO.php +++ b/app/Models/FeedDAO.php @@ -22,9 +22,9 @@ class FreshRSS_FeedDAO extends Minz_ModelPdo { protected function autoUpdateDb(array $errorInfo): bool { if (isset($errorInfo[0])) { if ($errorInfo[0] === FreshRSS_DatabaseDAO::ER_BAD_FIELD_ERROR || $errorInfo[0] === FreshRSS_DatabaseDAOPGSQL::UNDEFINED_COLUMN) { - $errorLines = explode("\n", (string)$errorInfo[2], 2); // The relevant column name is on the first line, other lines are noise + $errorLines = explode("\n", $errorInfo[2], 2); // The relevant column name is on the first line, other lines are noise foreach (['kind'] as $column) { - if (stripos($errorLines[0], $column) !== false) { + if (str_contains($errorLines[0], $column)) { return $this->addColumn($column); } } |
