From d0401257f666ad8cbda054c5e7ec46524a832636 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 12 Apr 2016 22:15:58 +0200 Subject: Fix #465 --- db/item.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'db') diff --git a/db/item.php b/db/item.php index 153414c93..1ef74061e 100644 --- a/db/item.php +++ b/db/item.php @@ -23,7 +23,6 @@ use \OCP\AppFramework\Db\Entity; * @method void setGuid(string $value) * @method string getGuidHash() * @method void setGuidHash(string $value) - * @method string getGuid() * @method string getUrl() * @method string getTitle() * @method string getAuthor() @@ -131,7 +130,8 @@ class Item extends Entity implements IAPI, \JsonSerializable { 'starred' => $this->isStarred(), 'lastModified' => $this->getLastModified(), 'rtl' => $this->getRtl(), - 'intro' => $this->getIntro() + 'intro' => $this->getIntro(), + 'fingerprint' => $this->getFingerprint() ]; } @@ -151,7 +151,8 @@ class Item extends Entity implements IAPI, \JsonSerializable { 'unread' => $this->isUnread(), 'starred' => $this->isStarred(), 'lastModified' => $this->getLastModified(), - 'rtl' => $this->getRtl() + 'rtl' => $this->getRtl(), + 'fingerprint' => $this->getFingerprint() ]; } -- cgit v1.2.3