forgot that one

This commit is contained in:
ITOH
2021-04-24 19:44:28 +02:00
parent 140326700b
commit 6d4c51a4eb
+1 -3
View File
@@ -21,7 +21,7 @@ export async function deleteMessages(
); );
} }
const result = await rest.runMethod( return await rest.runMethod<undefined>(
"post", "post",
endpoints.CHANNEL_BULK_DELETE(channelId), endpoints.CHANNEL_BULK_DELETE(channelId),
{ {
@@ -29,6 +29,4 @@ export async function deleteMessages(
reason, reason,
}, },
); );
return result;
} }