mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 03:18:17 +00:00
Prettified Code!
This commit is contained in:
@@ -8,13 +8,13 @@ export async function handleMessageDelete(data: DiscordGatewayPayload) {
|
||||
const payload = data.d as MessageDelete;
|
||||
const channel = await cacheHandlers.get(
|
||||
"channels",
|
||||
snowflakeToBigint(payload.channelId),
|
||||
snowflakeToBigint(payload.channelId)
|
||||
);
|
||||
if (!channel) return;
|
||||
|
||||
eventHandlers.messageDelete?.(
|
||||
{ id: payload.id, channel },
|
||||
await cacheHandlers.get("messages", snowflakeToBigint(payload.id)),
|
||||
await cacheHandlers.get("messages", snowflakeToBigint(payload.id))
|
||||
);
|
||||
|
||||
await cacheHandlers.delete("messages", snowflakeToBigint(payload.id));
|
||||
|
||||
Reference in New Issue
Block a user