From 30f184897f96dcfd9022e8e21a10b3052a2401f2 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Wed, 18 Aug 2021 23:21:00 +0300 Subject: [PATCH] Re-enable audit log checks --- backend/src/utils.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/src/utils.ts b/backend/src/utils.ts index a1ce91a2..7be56779 100644 --- a/backend/src/utils.ts +++ b/backend/src/utils.ts @@ -520,9 +520,6 @@ 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 });