aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Feed.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-05-28 02:10:52 +0200
committerGravatar GitHub <noreply@github.com> 2017-05-28 02:10:52 +0200
commitcfca100817e1d2af2604bc816849e1ed48d530ba (patch)
tree776bdb02bba7df4b3f989673c4d34895279b178e /app/Models/Feed.php
parentb49bd3f3378102dc8cfc5986cc3a3f969005f5f1 (diff)
parent97fe573aceb0978081cb85f7a7259546f52d507c (diff)
Merge pull request #1558 from Alkarex/duplicates_items_no_guid
Duplicates items no guid
Diffstat (limited to 'app/Models/Feed.php')
-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,