aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-02-03 21:24:06 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-02-03 21:24:06 +0100
commit9cc72c0c4860c96d9d82310e4bb76a9233fd2961 (patch)
treed8440ccc3ab6014461e8a55c5283278f209b403d /app
parent85a95aa0ddd438c4e12e56865093f00354147f69 (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.php2
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']);