diff --git a/src/plugins/roleColorEverywhere/index.tsx b/src/plugins/roleColorEverywhere/index.tsx index d00016a0..29747d37 100644 --- a/src/plugins/roleColorEverywhere/index.tsx +++ b/src/plugins/roleColorEverywhere/index.tsx @@ -165,7 +165,7 @@ export default definePlugin({ getColorString(userId: string, channelOrGuildId: string) { try { - if (Settings.plugins.customUserColors.enabled) + if (Settings.plugins.CustomUserColors.enabled) return getCustomColorString(userId, true); const guildId = ChannelStore.getChannel(channelOrGuildId)?.guild_id ?? GuildStore.getGuild(channelOrGuildId)?.id; diff --git a/src/plugins/typingTweaks/index.tsx b/src/plugins/typingTweaks/index.tsx index 7991b058..69226e1c 100644 --- a/src/plugins/typingTweaks/index.tsx +++ b/src/plugins/typingTweaks/index.tsx @@ -60,7 +60,7 @@ interface Props { function typingUserColor(guildId: string, userId: string) { if (!settings.store.showRoleColors) return; - if (Settings.plugins.customUserColors.enabled) return getCustomColorString(userId, true); + if (Settings.plugins.CustomUserColors.enabled) return getCustomColorString(userId, true); return GuildMemberStore.getMember(guildId, userId)?.colorString; }