Avoid a guid whith spaces.
This commit is contained in:
parent
ec90a9e6ad
commit
7e7cac19f6
1 changed files with 2 additions and 1 deletions
|
@ -2611,8 +2611,9 @@ class diaspora {
|
|||
$link = $matches[1];
|
||||
|
||||
$ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link);
|
||||
if (($ret["root_guid"] == $link) OR ($ret["root_guid"] == ""))
|
||||
if (($ret["root_guid"] == $link) OR (trim($ret["root_guid"]) == ""))
|
||||
return(false);
|
||||
|
||||
return($ret);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue