aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/Feed.php')
-rw-r--r--app/Models/Feed.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/app/Models/Feed.php b/app/Models/Feed.php
index 795337b01..7f52ba52f 100644
--- a/app/Models/Feed.php
+++ b/app/Models/Feed.php
@@ -467,10 +467,8 @@ class FreshRSS_Feed extends Minz_Model {
);
$entry->_tags($tags);
$entry->_feed($this);
- if ($this->pathEntries != '') {
- // Optionally load full content for truncated feeds
- $entry->loadCompleteContent();
- }
+ $entry->hash(); //Must be computed before loading full content
+ $entry->loadCompleteContent(); // Optionally load full content for truncated feeds
yield $entry;
}