summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-08-23 20:07:40 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-08-23 20:07:40 +0200
commit360a9f3054d7e25c6a5c9b1917ec33e794765c7d (patch)
tree3f16a66d19fd80e5eea3e6c9dadfb98a9b4dc645 /lib
parent4ff179dc802b2a899b2174f5bc5eedb871804d80 (diff)
Fix #209.0.2
Diffstat (limited to 'lib')
-rw-r--r--lib/Db/Item.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Db/Item.php b/lib/Db/Item.php
index d3f9efc40..1909019c1 100644
--- a/lib/Db/Item.php
+++ b/lib/Db/Item.php
@@ -150,7 +150,7 @@ class Item extends Entity implements IAPI, \JsonSerializable {
'feedId' => $this->getFeedId(),
'unread' => $this->isUnread(),
'starred' => $this->isStarred(),
- 'lastModified' => $this->getLastModified(),
+ 'lastModified' => (int) substr($this->getLastModified(), 0, -6),
'rtl' => $this->getRtl(),
'fingerprint' => $this->getFingerprint(),
'contentHash' => $this->getContentHash()