bump version

This commit is contained in:
Salvatore Giordano
2021-03-01 12:56:27 +01:00
parent b3f51115d5
commit c0271b2cb2
8 changed files with 22 additions and 7 deletions
@@ -42,7 +42,9 @@ class ChannelName extends StatelessWidget {
if (extraData['name'] == null) {
final otherMembers =
members.where((member) => member.userId != client.user.id);
if (otherMembers.isNotEmpty) {
if (otherMembers.length == 1) {
title = otherMembers.first.user.name;
} else if (otherMembers.isNotEmpty) {
final maxWidth = constraints.maxWidth;
final maxChars = maxWidth / textStyle.fontSize;
var currentChars = 0;