From 8c004967b4edaa140f826d94eae90f0f832dbca8 Mon Sep 17 00:00:00 2001 From: Alex Debril Date: Thu, 1 Apr 2021 22:35:21 +0200 Subject: [PATCH] Fill feed's update date with item's if empty --- src/FeedIo/Feed.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/FeedIo/Feed.php b/src/FeedIo/Feed.php index 347a9c4d..872f1016 100644 --- a/src/FeedIo/Feed.php +++ b/src/FeedIo/Feed.php @@ -132,6 +132,10 @@ public function rewind(): void public function add(ItemInterface $item) : FeedInterface { + if ($item->getLastModified() > $this->getLastModified()) { + $this->setLastModified($item->getLastModified()); + } + $this->items->append($item); return $this;