Skip to content

Commit

Permalink
Fix #42
Browse files Browse the repository at this point in the history
  • Loading branch information
etrusci-org committed May 5, 2024
1 parent dfe5e20 commit a6ae379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/mod/chat/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class Mod extends ModBase
<span class="timestamp">${timestamp}</span>
<span class="channel">${channel}</span>
<span class="badges">${badges}</span>
<span class="user"${(this.conf.usercolor && tags['color']) ? ` style="color:${tags['color']};"` : ''}>${user}</span>
<span class="user"${(this.conf.usercolor == 'true' && tags['color']) ? ` style="color:${tags['color']};"` : ''}>${user}</span>
<span class="message">${message}</span>
</div>
`
Expand Down

0 comments on commit a6ae379

Please sign in to comment.