aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-05-28 02:02:58 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-05-28 02:02:58 +0200
commit97fe573aceb0978081cb85f7a7259546f52d507c (patch)
tree776bdb02bba7df4b3f989673c4d34895279b178e /app
parentdd65cb0f9c85b261af6db85d0ea7c06b9e0bc6ec (diff)
SimplePie: Do not generate hash instead of GUID
https://github.com/FreshRSS/FreshRSS/issues/1552
Diffstat (limited to 'app')
-rw-r--r--app/Models/Feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Feed.php b/app/Models/Feed.php
index 78a78543a..52d49db6e 100644
--- a/app/Models/Feed.php
+++ b/app/Models/Feed.php
@@ -337,7 +337,7 @@ class FreshRSS_Feed extends Minz_Model {
$entry = new FreshRSS_Entry(
$this->id(),
- $item->get_id(),
+ $item->get_id(false, false),
$title === null ? '' : $title,
$author === null ? '' : html_only_entity_decode($author->name),
$content === null ? '' : $content,