Merge pull request #4973 from annando/diaspora-link

Bugfix: Twitter "Reshares" are now appearing again on Diaspora
This commit is contained in:
Hypolite Petovan 2018-05-03 10:20:18 -04:00 committed by GitHub
commit fbe1206f35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -3571,8 +3571,12 @@ class Diaspora
$ret["root_guid"] = $guid;
return $ret;
}
} elseif (($guid == "") && $complete) {
return false;
}
$ret["root_guid"] = $guid;
$profile = "";
preg_match("/profile='(.*?)'/ism", $attributes, $matches);
if ($matches[1] != "") {
@ -3593,10 +3597,6 @@ class Diaspora
}
}
if (!empty($guid)) {
$ret["root_guid"] = $guid;
}
if (empty($ret) && !$complete) {
return true;
}