diff options
| author | 2017-05-28 02:10:52 +0200 | |
|---|---|---|
| committer | 2017-05-28 02:10:52 +0200 | |
| commit | cfca100817e1d2af2604bc816849e1ed48d530ba (patch) | |
| tree | 776bdb02bba7df4b3f989673c4d34895279b178e /app/Models/Feed.php | |
| parent | b49bd3f3378102dc8cfc5986cc3a3f969005f5f1 (diff) | |
| parent | 97fe573aceb0978081cb85f7a7259546f52d507c (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.php | 2 |
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, |
