From 5d139d1638955f2b768922f903f3b0967bcebb81 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Fri, 26 May 2023 14:05:28 -0400 Subject: [PATCH] MarkCommentReplyAsRead response was wrong. --- src/http.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/http.ts b/src/http.ts index 69a0159..7130ce0 100644 --- a/src/http.ts +++ b/src/http.ts @@ -15,6 +15,7 @@ import { BlockCommunityResponse } from "./types/BlockCommunityResponse"; import { BlockPerson } from "./types/BlockPerson"; import { BlockPersonResponse } from "./types/BlockPersonResponse"; import { ChangePassword } from "./types/ChangePassword"; +import { CommentReplyResponse } from "./types/CommentReplyResponse"; import { CommentReportResponse } from "./types/CommentReportResponse"; import { CommentResponse } from "./types/CommentResponse"; import { CommunityResponse } from "./types/CommunityResponse"; @@ -626,7 +627,7 @@ export class LemmyHttp { * `HTTP.POST /comment/mark_as_read` */ markCommentReplyAsRead(form: MarkCommentReplyAsRead) { - return this.wrapper( + return this.wrapper( HttpType.Post, "/comment/mark_as_read", form