From 55ded8449d0da14a899e42876a7bdf35c1ef434c Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Fri, 29 Nov 2024 12:39:33 +0100 Subject: [PATCH] fix mark all read --- src/http.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/http.ts b/src/http.ts index 64aa84c..b636911 100644 --- a/src/http.ts +++ b/src/http.ts @@ -1423,12 +1423,12 @@ export class LemmyHttp { /** * Mark all replies as read. * - * `HTTP.POST /user/mark_all_as_read` + * `HTTP.POST /account/mention/mark_all_as_read` */ markAllAsRead(options?: RequestOptions) { return this.#wrapper( HttpType.Post, - "/user/mark_all_as_read", + "/account/mention/mark_all_as_read", {}, options, );