TypingTweaks: Fix usernames not being colored (#3070)

This commit is contained in:
sadan4 2024-12-10 23:06:34 -05:00 committed by GitHub
parent dcfddcbc21
commit 464c4a9b61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,7 +125,7 @@ export default definePlugin({
buildSeveralUsers, buildSeveralUsers,
mutateChildren(props: any, users: User[], children: any) { mutateChildren(guildId: any, users: User[], children: any) {
try { try {
if (!Array.isArray(children)) { if (!Array.isArray(children)) {
return children; return children;
@ -135,7 +135,7 @@ export default definePlugin({
return children.map(c => return children.map(c =>
c.type === "strong" || (typeof c !== "string" && !React.isValidElement(c)) c.type === "strong" || (typeof c !== "string" && !React.isValidElement(c))
? <TypingUser {...props} user={users[element++]} /> ? <TypingUser guildId={guildId} user={users[element++]} />
: c : c
); );
} catch (e) { } catch (e) {