Prettified Code!

This commit is contained in:
itohatweb
2021-05-21 15:51:33 +00:00
committed by GitHub Action
parent fe4ab8517b
commit 3549cdeb63
279 changed files with 1617 additions and 1768 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ import { snakelize } from "../../../util/utils.ts";
*/
export async function startThread(
channelId: bigint,
options: StartThread & { messageId?: bigint },
options: StartThread & { messageId?: bigint }
) {
const channel = await cacheHandlers.get("channels", channelId);
if (channel) {
@@ -33,6 +33,6 @@ export async function startThread(
options?.messageId
? endpoints.THREAD_START_PUBLIC(channelId, options.messageId)
: endpoints.THREAD_START_PRIVATE(channelId),
snakelize(options),
snakelize(options)
);
}