Merge pull request #4973 from annando/diaspora-link
Bugfix: Twitter "Reshares" are now appearing again on Diaspora
This commit is contained in:
commit
fbe1206f35
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue