Fix: Commenting on public posts from Friendica users is now possible again

This commit is contained in:
Michael 2018-04-04 06:06:38 +00:00
parent 5a9cacb754
commit c16ae0bacb
1 changed files with 6 additions and 4 deletions

View File

@ -3264,13 +3264,15 @@ class Diaspora
$logid = random_string(4);
$dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
// We always try to use the data from the fcontact table.
// This is important for transmitting data to Friendica servers.
if (!empty($contact['addr']) && ($contact['network'] != NETWORK_DIASPORA)) {
if (!empty($contact['addr'])) {
$fcontact = self::personByHandle($contact['addr']);
$dest_url = ($public_batch ? $fcontact["batch"] : $fcontact["notify"]);
} else {
$dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
if (!empty($fcontact)) {
$dest_url = ($public_batch ? $fcontact["batch"] : $fcontact["notify"]);
}
}
if (!$dest_url) {