summaryrefslogtreecommitdiffstats
path: root/lib/Db/NewsMapperV2.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/NewsMapperV2.php')
-rw-r--r--lib/Db/NewsMapperV2.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Db/NewsMapperV2.php b/lib/Db/NewsMapperV2.php
index 708ef4f73..93500c7c9 100644
--- a/lib/Db/NewsMapperV2.php
+++ b/lib/Db/NewsMapperV2.php
@@ -58,7 +58,9 @@ abstract class NewsMapperV2 extends QBMapper
public function update(Entity $entity): Entity
{
- $entity->setLastModified($this->time->getMicroTime());
+ if ([] !== $entity->getUpdatedFields()) {
+ $entity->setLastModified($this->time->getMicroTime());
+ }
return parent::update($entity);
}