Fix Typos
Some checks failed
Sync to Codeberg / Sync Codeberg and Github (push) Has been cancelled
Release / Build Equicord (push) Has been cancelled
Test / Test (push) Has been cancelled

This commit is contained in:
thororen1234 2025-02-17 01:17:55 -05:00
parent 1b12e8a30c
commit bfb97040b9
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;
}