From 4ffd83015ed0b5d96c34efe3b486448edd0c9fc4 Mon Sep 17 00:00:00 2001 From: Rajeh Taher Date: Thu, 7 Jul 2022 18:57:34 +0300 Subject: [PATCH] eslint!! --- src/structures/GroupChat.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/structures/GroupChat.js b/src/structures/GroupChat.js index bdde837..272628e 100644 --- a/src/structures/GroupChat.js +++ b/src/structures/GroupChat.js @@ -1,7 +1,7 @@ 'use strict'; const Chat = require('./Chat'); -const Util = require('../util/Util') +const Util = require('../util/Util'); /** * Group participant information @@ -68,7 +68,7 @@ class GroupChat extends Chat { for (const participantWid of participantWids) { status.push(await window.Store.GroupParticipants.sendAddParticipants(chatWid, participantWid)); if (sleep) { - await Util.sleep(sleep) + await Util.sleep(sleep); } } return status; @@ -89,7 +89,7 @@ class GroupChat extends Chat { for (const participantWid of participantWids) { status.push(await window.Store.GroupParticipants.sendRemoveParticipants(chatWid, participantWid)); if (sleep) { - await Util.sleep(sleep) + await Util.sleep(sleep); } } return status; @@ -110,7 +110,7 @@ class GroupChat extends Chat { for (const participantWid of participantWids) { status.push(await window.Store.GroupParticipants.sendPromoteParticipants(chatWid, participantWid)); if (sleep) { - await Util.sleep(sleep) + await Util.sleep(sleep); } } return status; @@ -131,7 +131,7 @@ class GroupChat extends Chat { for (const participantWid of participantWids) { status.push(await window.Store.GroupParticipants.sendDemoteParticipants(chatWid, participantWid)); if (sleep) { - await Util.sleep(sleep) + await Util.sleep(sleep); } } return status;