summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-04-12 22:15:58 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-04-12 22:16:13 +0200
commitd0401257f666ad8cbda054c5e7ec46524a832636 (patch)
treea055045ea4b20e9a4e6b7b1082d4905d0a9459f4 /db
parent3df007e7c04f19562f02a6dc0a6a20bb624c7338 (diff)
Fix #465
Diffstat (limited to 'db')
-rw-r--r--db/item.php7
1 files changed, 4 insertions, 3 deletions
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()
];
}