소스 검색

SimplePie: Do not generate hash instead of GUID

https://github.com/FreshRSS/FreshRSS/issues/1552
Alexandre Alapetite 9 년 전
부모
커밋
97fe573ace
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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,