Fixed missing default channel subscription icon

canary
WolverinDEV 2020-09-25 18:15:29 +02:00
parent 4dec91094b
commit 35b35d4db6
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ class ChannelEntryIcon extends ReactComponentBase<ChannelEntryIconProperties, {}
} else if (!channel_properties.channel_flag_maxfamilyclients_unlimited && channel_properties.channel_maxfamilyclients >= 0 && this.props.channel.clients(true).length >= channel_properties.channel_maxfamilyclients) {
channelIcon = subscribed ? ClientIcon.ChannelRedSubscribed : ClientIcon.ChannelRed;
} else {
channelIcon = ClientIcon.ChannelGreen;
channelIcon = subscribed ? ClientIcon.ChannelGreenSubscribed : ClientIcon.ChannelGreen;
}
return <ClientIconRenderer icon={channelIcon} className={channelStyle.channelType} />;