aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Entry.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-03-09 08:41:01 +0100
committerGravatar GitHub <noreply@github.com> 2021-03-09 08:41:01 +0100
commitef4a826e345e2eb7c0013617b3f07cc53ef22ed8 (patch)
tree9347f2e14c857626376b224fe40572ae0d695be2 /app/Models/Entry.php
parent385e7f883a3ea39fba4e5dad4a64f1ffe352165d (diff)
Reload full content when changed (#3506)
* Reload full content when changed If an article is changed, reload also its full content when applicable. * Compute hash before getting full content * Revert mix two PRs * Update app/Controllers/feedController.php
Diffstat (limited to 'app/Models/Entry.php')
-rw-r--r--app/Models/Entry.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php
index 6e14d43b7..021ceedfb 100644
--- a/app/Models/Entry.php
+++ b/app/Models/Entry.php
@@ -433,9 +433,9 @@ class FreshRSS_Entry extends Minz_Model {
$feed = $this->feed(true);
if ($feed != null && trim($feed->pathEntries()) != '') {
$entryDAO = FreshRSS_Factory::createEntryDao();
- $entry = $entryDAO->searchByGuid($this->feedId, $this->guid);
+ $entry = $force ? null : $entryDAO->searchByGuid($this->feedId, $this->guid);
- if ($entry && !$force) {
+ if ($entry) {
// l'article existe déjà en BDD, en se contente de recharger ce contenu
$this->content = $entry->content();
} else {