summaryrefslogtreecommitdiff
path: root/classes/api.php
diff options
context:
space:
mode:
authorjmechnich <[email protected]>2022-09-28 12:29:57 +0200
committerjmechnich <[email protected]>2022-09-28 12:29:57 +0200
commit359f0af2e79a76fd0738133113eca0a4d59f23a7 (patch)
tree12e38f54da54bd55032a5c848b81a6a819462ef5 /classes/api.php
parentd47b8c8494ed41c8a72c21b238dde74e606c5f0e (diff)
Fix PHP8 strtime warning if argument is null
Diffstat (limited to 'classes/api.php')
-rwxr-xr-xclasses/api.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/api.php b/classes/api.php
index 85dc5d0db..7863a213e 100755
--- a/classes/api.php
+++ b/classes/api.php
@@ -333,7 +333,7 @@ class API extends Handler {
'published' => self::_param_to_bool($entry->published),
'comments' => $entry->comments,
'author' => $entry->author,
- 'updated' => (int) strtotime($entry->updated),
+ 'updated' => (int) strtotime($entry->updated ?? ''),
'feed_id' => $entry->feed_id,
'attachments' => Article::_get_enclosures($entry->id),
'score' => (int) $entry->score,
@@ -618,7 +618,7 @@ class API extends Handler {
'unread' => (int) $unread,
'has_icon' => $has_icon,
'cat_id' => (int) $feed->cat_id,
- 'last_updated' => (int) strtotime($feed->last_updated),
+ 'last_updated' => (int) strtotime($feed->last_updated ?? ''),
'order_id' => (int) $feed->order_id,
];
@@ -648,7 +648,7 @@ class API extends Handler {
->find_one($feed_id);
if ($feed) {
- $last_updated = strtotime($feed->last_updated);
+ $last_updated = strtotime($feed->last_updated ?? '');
$cache_images = self::_param_to_bool($feed->cache_images);
if (!$cache_images && time() - $last_updated > 120) {
@@ -725,7 +725,7 @@ class API extends Handler {
"unread" => self::_param_to_bool($line["unread"]),
"marked" => self::_param_to_bool($line["marked"]),
"published" => self::_param_to_bool($line["published"]),
- "updated" => (int)strtotime($line["updated"]),
+ "updated" => (int)strtotime($line["updated"] ?? ''),
"is_updated" => $is_updated,
"title" => $line["title"],
"link" => $line["link"],