summaryrefslogtreecommitdiffstats
path: root/db/item.php
diff options
context:
space:
mode:
Diffstat (limited to 'db/item.php')
-rw-r--r--db/item.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/item.php b/db/item.php
index a314baf7a..117e98fb5 100644
--- a/db/item.php
+++ b/db/item.php
@@ -221,7 +221,8 @@ class Item extends Entity implements IAPI, \JsonSerializable {
}
private function computeFingerprint() {
- return md5($this->getTitle() . $this->getUrl() . $this->getBody());
+ return md5($this->getTitle() . $this->getUrl() . $this->getBody() .
+ $this->getEnclosureLink());
}
public function setUrl($url) {