diff --git a/packages/pl-api/lib/client.ts b/packages/pl-api/lib/client.ts index fb076a340..1dfbd18e8 100644 --- a/packages/pl-api/lib/client.ts +++ b/packages/pl-api/lib/client.ts @@ -1445,6 +1445,16 @@ class PlApiClient { }, }); break; + case ICESHRIMP_NET: + await this.#getIceshrimpAccessToken(); + response = await this.request('/api/iceshrimp/auth/change-password', { + method: 'POST', + body: { + oldPassword: current_password, + newPassword: new_password, + }, + }); + break; case MITRA: response = await this.request('/api/v1/settings/change_password', { method: 'POST',