Răsfoiți Sursa

SimplePie: Do not generate hash instead of GUID

https://github.com/FreshRSS/FreshRSS/issues/1552
Alexandre Alapetite 9 ani în urmă
părinte
comite
97fe573ace
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      app/Models/Feed.php

+ 1 - 1
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,