From 1df2e18fef6eecac9d1c144f0fb4caebc68137c3 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Wed, 18 Aug 2021 22:15:56 +0300 Subject: [PATCH] Hotfix 3 --- backend/src/utils.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/src/utils.ts b/backend/src/utils.ts index 19fc690c..5879cd1a 100644 --- a/backend/src/utils.ts +++ b/backend/src/utils.ts @@ -519,6 +519,9 @@ export async function findRelevantAuditLogEntry( return null; } + // FIXME: Temp hotfix + return null; + let auditLogs: GuildAuditLogs | null = null; try { auditLogs = await guild.fetchAuditLogs({ limit: 5, type: actionType });