Co-authored-by: gus <august.eymann@gmail.ccom>
public void UpdateSelectedChannel(ChatBox box)
{
- var (prefixChannel, _, radioChannel) = SplitInputContents(box.ChatInput.Input.Text);
+ var (prefixChannel, _, radioChannel) = SplitInputContents(box.ChatInput.Input.Text.ToLower());
if (prefixChannel == ChatSelectChannel.None)
box.ChatInput.ChannelSelector.UpdateChannelSelectButton(box.SelectedChannel, null);
}
var channelKey = input[1];
+ channelKey = char.ToLower(channelKey);
output = SanitizeMessageCapital(input[2..].TrimStart());
if (channelKey == DefaultChannelKey)