mirror of
https://github.com/friendica/friendica
synced 2025-04-25 22:30:10 +00:00
Issue 8866: Fix fetching feed links with missing base
This commit is contained in:
parent
09bb0dff42
commit
81928727f2
2 changed files with 24 additions and 0 deletions
|
@ -337,6 +337,10 @@ class Feed
|
|||
$item["uri"] = $item["plink"];
|
||||
}
|
||||
|
||||
// Add the base path if missing
|
||||
$item["uri"] = Network::addBasePath($item["uri"], $basepath);
|
||||
$item["plink"] = Network::addBasePath($item["plink"], $basepath);
|
||||
|
||||
$orig_plink = $item["plink"];
|
||||
|
||||
$item["plink"] = Network::finalUrl($item["plink"]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue