mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Fix a notice when the author is missing
This commit is contained in:
parent
b07490266c
commit
b5de71c390
1 changed files with 3 additions and 0 deletions
|
@ -41,6 +41,9 @@ class Fetch extends BaseModule
|
||||||
$item = Item::selectFirst(['author-link'], $condition);
|
$item = Item::selectFirst(['author-link'], $condition);
|
||||||
if (empty($item)) {
|
if (empty($item)) {
|
||||||
$parts = parse_url($item["author-link"]);
|
$parts = parse_url($item["author-link"]);
|
||||||
|
if (empty($parts["scheme"]) || empty($parts["host"])) {
|
||||||
|
throw new HTTPException\InternalServerErrorException();
|
||||||
|
}
|
||||||
$host = $parts["scheme"] . "://" . $parts["host"];
|
$host = $parts["scheme"] . "://" . $parts["host"];
|
||||||
|
|
||||||
if (Strings::normaliseLink($host) != Strings::normaliseLink($app->getBaseURL())) {
|
if (Strings::normaliseLink($host) != Strings::normaliseLink($app->getBaseURL())) {
|
||||||
|
|
Loading…
Reference in a new issue