mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-18 02:36:56 +00:00
4.20.50
* Added: Settings for independently changing the colors of chat on Twitch. * Fixed: Incorrect color being applied to Stream Chat. * Changed: Style of in-line message reply tags. * Changed: Set more users to request link info from the API than the socket service. (75% vs old 50%)
This commit is contained in:
parent
c97928fbb7
commit
2cfc613518
10 changed files with 180 additions and 27 deletions
|
@ -508,8 +508,8 @@ export default class Badges extends Module {
|
|||
}
|
||||
|
||||
|
||||
render(msg, createElement) { // eslint-disable-line class-methods-use-this
|
||||
const hidden_badges = this.parent.context.get('chat.badges.hidden') || {},
|
||||
render(msg, createElement, skip_hide = false) { // eslint-disable-line class-methods-use-this
|
||||
const hidden_badges = skip_hide ? {} : (this.parent.context.get('chat.badges.hidden') || {}),
|
||||
badge_style = this.parent.context.get('chat.badges.style'),
|
||||
custom_mod = this.parent.context.get('chat.badges.custom-mod'),
|
||||
is_mask = badge_style > 5,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue