Merge pull request #11333 from annando/feed-guid

Don't use the GUID value directly
This commit is contained in:
Hypolite Petovan
2022-03-14 18:02:29 -04:00
committed by GitHub
+3 -1
View File
@@ -310,7 +310,9 @@ class Feed
$guid = XML::getFirstNodeValue($xpath, 'guid/text()', $entry);
if (!empty($guid)) {
$item["uri"] = $guid;
$item["guid"] = $guid;
// Don't use the GUID value directly but instead use it as a basis for the GUID
$item["guid"] = Item::guidFromUri($guid, parse_url($guid, PHP_URL_HOST) ?? parse_url($item["plink"], PHP_URL_HOST));
}
if (empty($item["uri"])) {