From 48466251196197467673f3a21f8418586c2c671f Mon Sep 17 00:00:00 2001 From: Mohammed Khan <60229505+saifkhan7865@users.noreply.github.com> Date: Wed, 29 Mar 2023 09:20:23 +0530 Subject: [PATCH] fixed version id number (#2087) --- src/util/Injected.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/Injected.js b/src/util/Injected.js index dbae6c2..229220c 100644 --- a/src/util/Injected.js +++ b/src/util/Injected.js @@ -41,7 +41,7 @@ exports.ExposeStore = (moduleRaidStr) => { window.Store.ProfilePic = window.mR.findModule('profilePicResync')[0]; window.Store.PresenceUtils = window.mR.findModule('sendPresenceAvailable')[0]; window.Store.ChatState = window.mR.findModule('sendChatStateComposing')[0]; - window.Store.GroupParticipants = window.mR.findModule('promoteParticipants')[1]; + window.Store.GroupParticipants = window.mR.findModule('promoteParticipants')[0]; window.Store.JoinInviteV4 = window.mR.findModule('sendJoinGroupViaInviteV4')[0]; window.Store.findCommonGroups = window.mR.findModule('findCommonGroups')[0].findCommonGroups; window.Store.StatusUtils = window.mR.findModule('setMyStatus')[0];