X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FProtocol%2FSalmon.php;h=9724f82df74ab6c6dac984eeb0e0e4bdb02431d2;hb=065d73f860e40e5e3c0646a39edd30997d34f72e;hp=4fcef9177317024704ce5d2a30cde595a01b6ddc;hpb=3e21b035b72252ca765cbae20ce8550f349e84ef;p=friendica.git diff --git a/src/Protocol/Salmon.php b/src/Protocol/Salmon.php index 4fcef91773..9724f82df7 100644 --- a/src/Protocol/Salmon.php +++ b/src/Protocol/Salmon.php @@ -23,7 +23,7 @@ namespace Friendica\Protocol; use Friendica\Core\Logger; use Friendica\DI; -use Friendica\Network\HTTPClient\Client\HttpClient; +use Friendica\Network\HTTPClient\Client\HttpClientAccept; use Friendica\Network\Probe; use Friendica\Util\Crypto; use Friendica\Util\Strings; @@ -73,7 +73,7 @@ class Salmon $ret[$x] = substr($ret[$x], 5); } } elseif (Strings::normaliseLink($ret[$x]) == 'http://') { - $ret[$x] = DI::httpClient()->fetch($ret[$x], 0, HttpClient::ACCEPT_DEFAULT); + $ret[$x] = DI::httpClient()->fetch($ret[$x], HttpClientAccept::MAGIC_KEY); Logger::debug('Fetched public key', ['url' => $ret[$x]]); } }