From 302ea080b435f89741f8a6bb23d0c674b3e96bc3 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 25 Mar 2024 12:05:38 -0400 Subject: [PATCH] Move list_media to /account/ --- src/http.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/http.ts b/src/http.ts index 2e2c592..2d0e23f 100644 --- a/src/http.ts +++ b/src/http.ts @@ -293,12 +293,12 @@ export class LemmyHttp { /** * List all the media for your user * - * `HTTP.GET /user/list_media` + * `HTTP.GET /account/list_media` */ listMedia(form: ListMedia = {}) { return this.#wrapper( HttpType.Get, - "/user/list_media", + "/account/list_media", form, ); }