diff options
Diffstat (limited to 'app/Models/EntryDAO.php')
| -rw-r--r-- | app/Models/EntryDAO.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php index 707002875..93abc9a29 100644 --- a/app/Models/EntryDAO.php +++ b/app/Models/EntryDAO.php @@ -147,7 +147,7 @@ SQL; if (isset($errorInfo[0])) { if ($errorInfo[0] === FreshRSS_DatabaseDAO::ER_BAD_FIELD_ERROR || $errorInfo[0] === FreshRSS_DatabaseDAOPGSQL::UNDEFINED_COLUMN) { $errorLines = explode("\n", $errorInfo[2], 2); // The relevant column name is on the first line, other lines are noise - foreach (['attributes'] as $column) { + foreach (['attributes', 'lastUserModified'] as $column) { if (str_contains($errorLines[0], $column)) { return $this->addColumn($column); } |
