From 495076e02665527a919f49c32082f3d5e61f3b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicole=20Miko=C5=82ajczyk?= Date: Thu, 17 Apr 2025 17:42:24 +0200 Subject: [PATCH] pl-api: ok, this seems to work but why MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nicole Mikołajczyk --- packages/pl-api/lib/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-api/lib/client.ts b/packages/pl-api/lib/client.ts index e0a6148d3..1aa3e3828 100644 --- a/packages/pl-api/lib/client.ts +++ b/packages/pl-api/lib/client.ts @@ -865,7 +865,7 @@ class PlApiClient { let response; switch (this.features.version.software) { case ICESHRIMP_NET: - response = await this.request(`/api/v1/users/${accountId}/bite`, { method: 'POST' }); + response = await this.request('/api/v1/bite', { method: 'POST', body: accountId }); break; default: response = await this.request('/api/v1/bite', { method: 'POST', params: { id: accountId } });