From 6d7cfc84502ceb2eca064eb4282cb50efd8f1415 Mon Sep 17 00:00:00 2001 From: Philipp Date: Wed, 9 Nov 2022 22:39:36 +0100 Subject: [PATCH] whops .. wrong legacy endpoint --- src/Module/Contact/MatchInterests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Contact/MatchInterests.php b/src/Module/Contact/MatchInterests.php index c9601a0fd..9184e818f 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;