From ff2ca5ad3b1b9d3ee69d71978f0880d60115ce31 Mon Sep 17 00:00:00 2001 From: LuanRT Date: Wed, 20 Oct 2021 02:21:05 -0300 Subject: [PATCH] format: remove unnecessary async keyword --- lib/Livechat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Livechat.js b/lib/Livechat.js index 34c77f59..656a66ff 100644 --- a/lib/Livechat.js +++ b/lib/Livechat.js @@ -23,7 +23,7 @@ class Livechat extends EventEmitter { } enqueueActionGroup(group) { - group.forEach(async (action) => { + group.forEach((action) => { if (!action.addChatItemAction) return; //TODO: handle different action types const message_content = action.addChatItemAction.item.liveChatTextMessageRenderer; if (!message_content) return;