X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWorker%2FDelivery.php;h=1a0758987aa98554f95f9e0e35979809f93c8a4f;hb=2f3f41ed9cdb4229d78bdf2f91b0617403a8dd62;hp=cec894480ca90cee1f4c8b3f08bd5eb2a2c37db6;hpb=ce69026964ffe2eb514223c3458ac27cf6d049b9;p=friendica.git diff --git a/src/Worker/Delivery.php b/src/Worker/Delivery.php index cec894480c..1a0758987a 100644 --- a/src/Worker/Delivery.php +++ b/src/Worker/Delivery.php @@ -277,7 +277,7 @@ class Delivery private static function deliverDFRN(string $cmd, array $contact, array $owner, array $items, array $target_item, bool $public_message, bool $top_level, bool $followup, int $server_protocol = null) { // Transmit Diaspora reshares via Diaspora if the Friendica contact support Diaspora - if (Diaspora::getReshareDetails($target_item ?? []) && Diaspora::isSupportedByContactUrl($contact['addr'], false)) { + if (Diaspora::getReshareDetails($target_item ?? []) && Diaspora::isSupportedByContactUrl($contact['addr'])) { Logger::info('Reshare will be transmitted via Diaspora', ['url' => $contact['url'], 'guid' => ($target_item['guid'] ?? '') ?: $target_item['id']]); self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup); return;