mirror of
https://github.com/Equicord/Equicord.git
synced 2025-04-02 21:51:57 -04:00
Fix MGDM
This commit is contained in:
parent
8b7229b100
commit
66b7a92c15
1 changed files with 1 additions and 2 deletions
|
@ -47,7 +47,7 @@ export default definePlugin({
|
|||
|
||||
patches: [
|
||||
{
|
||||
find: ".Messages.MUTUAL_GUILDS_WITH_END_COUNT",
|
||||
find: ".Messages.MUTUAL_GUILDS_WITH_END_COUNT", // Note: the module is lazy-loaded
|
||||
replacement: {
|
||||
match: /(?<=\.tabBarItem.{0,50}MUTUAL_GUILDS.+?}\),)(?=.+?(\(0,\i\.jsxs?\)\(.{0,100}id:))/,
|
||||
replace: '(arguments[0].user.bot||arguments[0].isCurrentUser)?null:$1"MUTUAL_GDMS",children:"Mutual Groups"}),'
|
||||
|
@ -85,7 +85,6 @@ export default definePlugin({
|
|||
const label = "Mutual Group";
|
||||
return state > 0 ? pluralise(state, label) : `No ${label}s`;
|
||||
},
|
||||
|
||||
renderMutualGDMs: ErrorBoundary.wrap(({ user, onClose }: { user: User, onClose: () => void; }) => {
|
||||
const entries = ChannelStore.getSortedPrivateChannels().filter(c => c.isGroupDM() && c.recipients.includes(user.id)).map(c => (
|
||||
<Clickable
|
||||
|
|
Loading…
Add table
Reference in a new issue