From: Philipp Date: Wed, 9 Nov 2022 21:39:36 +0000 (+0100) Subject: whops .. wrong legacy endpoint X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6d7cfc84502ceb2eca064eb4282cb50efd8f1415;p=friendica.git whops .. wrong legacy endpoint --- diff --git a/src/Module/Contact/MatchInterests.php b/src/Module/Contact/MatchInterests.php index c9601a0fdf..9184e818f9 100644 --- a/src/Module/Contact/MatchInterests.php +++ b/src/Module/Contact/MatchInterests.php @@ -125,7 +125,7 @@ class MatchInterests extends BaseModule $result = $this->httpClient->post($server . '/search/user/tags', $searchParameters); if (!$result->isSuccess()) { // try legacy endpoint - $result = $this->httpClient->post($server . '/contact/search/tags', $searchParameters); + $result = $this->httpClient->post($server . '/msearch', $searchParameters); if (!$result->isSuccess()) { $this->logger->notice('Search-Endpoint not available for server.', ['server' => $server]); continue;