From 50d0b23b8e54c55989921cdbdb2a881c46a52498 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Mon, 2 Dec 2024 11:27:16 +0100 Subject: [PATCH] change account route --- src/http.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/http.ts b/src/http.ts index f2cb095..a7464ca 100644 --- a/src/http.ts +++ b/src/http.ts @@ -279,12 +279,12 @@ export class LemmyHttp { /** * Get data of current user. * - * `HTTP.GET /account/my_user` + * `HTTP.GET /account` */ getMyUser(options?: RequestOptions) { return this.#wrapper( HttpType.Get, - "/account/my_user", + "/account", {}, options, );