diff options
| author | 2019-02-03 21:24:06 +0100 | |
|---|---|---|
| committer | 2019-02-03 21:24:06 +0100 | |
| commit | 9cc72c0c4860c96d9d82310e4bb76a9233fd2961 (patch) | |
| tree | d8440ccc3ab6014461e8a55c5283278f209b403d /app | |
| parent | 85a95aa0ddd438c4e12e56865093f00354147f69 (diff) | |
Fix EntryDAO tags warning for Fever API
https://github.com/FreshRSS/FreshRSS/issues/2239
Diffstat (limited to 'app')
| -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 21f17c097..93d1183c9 100644 --- a/app/Models/EntryDAO.php +++ b/app/Models/EntryDAO.php @@ -1065,7 +1065,7 @@ SQL; $dao['date'], $dao['is_read'], $dao['is_favorite'], - $dao['tags'] + isset($dao['tags']) ? $dao['tags'] : '' ); if (isset($dao['id'])) { $entry->_id($dao['id']); |
