RelationshipNotifier: Fix false positives when using AccountSwitcher

This commit is contained in:
Vendicated 2023-05-02 02:15:22 +02:00
parent 9f534c0685
commit 4dce836ff7
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905
1 changed files with 12 additions and 6 deletions

View File

@ -18,7 +18,7 @@
import { DataStore, Notices } from "@api/index";
import { showNotification } from "@api/Notifications";
import { ChannelStore, GuildStore, RelationshipStore, UserStore, UserUtils } from "@webpack/common";
import { ChannelStore, GuildMemberStore, GuildStore, RelationshipStore, UserStore, UserUtils } from "@webpack/common";
import settings from "./settings";
import { ChannelType, RelationshipType, SimpleGroupChannel, SimpleGuild } from "./types";
@ -106,12 +106,16 @@ export function deleteGuild(id: string) {
}
export async function syncGuilds() {
guilds.clear();
const me = UserStore.getCurrentUser().id;
for (const [id, { name, icon }] of Object.entries(GuildStore.getGuilds())) {
guilds.set(id, {
id,
name,
iconURL: icon && `https://cdn.discordapp.com/icons/${id}/${icon}.png`
});
if (GuildMemberStore.isMember(id, me))
guilds.set(id, {
id,
name,
iconURL: icon && `https://cdn.discordapp.com/icons/${id}/${icon}.png`
});
}
await DataStore.set(guildsKey(), guilds);
}
@ -126,6 +130,8 @@ export function deleteGroup(id: string) {
}
export async function syncGroups() {
groups.clear();
for (const { type, id, name, rawRecipients, icon } of ChannelStore.getSortedPrivateChannels()) {
if (type === ChannelType.GROUP_DM)
groups.set(id, {