mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-11 16:40:55 +00:00
4.0.0-rc21.6
* Added: Setting to remove rounding applied to avatars. * Fixed: New settings not being marked as seen when you see them. * Fixed: Position of the FFZ Control Center icon in the navigation bar. * Fixed: Position of the Whisper button when in theater mode with a custom Chat Width. * Fixed: Hiding Recommended Channels from the Following Directory. * Fixed: Rendering of badges in slot zero.
This commit is contained in:
parent
f4557cd31b
commit
f754b7fce7
8 changed files with 40 additions and 21 deletions
|
@ -406,7 +406,7 @@ export default class Badges extends Module {
|
|||
}
|
||||
|
||||
for(const badge of badges)
|
||||
if ( badge && badge.id ) {
|
||||
if ( badge && badge.id != null ) {
|
||||
if ( hidden_badges[badge.id] )
|
||||
continue;
|
||||
|
||||
|
@ -440,7 +440,7 @@ export default class Badges extends Module {
|
|||
|
||||
style = old_badge.props.style;
|
||||
|
||||
} else if ( ! slot )
|
||||
} else if ( slot == null )
|
||||
continue;
|
||||
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue