Merge branch 'soru/fix-client-name' into 'main'

fix: Client names being super long

See merge request famedly/fluffychat!524
This commit is contained in:
Krille Fear 2021-09-21 07:10:10 +00:00
commit dc130395f9
1 changed files with 2 additions and 1 deletions

View File

@ -134,7 +134,8 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
final multiAccount = client.isLogged();
if (!multiAccount) return client;
_loginClientCandidate ??= ClientManager.createClient(
client.generateUniqueTransactionId())
// we use the first clients here, else we can easily end up with super long client names.
widget.clients.first.generateUniqueTransactionId())
..onLoginStateChanged
.stream
.where((l) => l == LoginState.loggedIn)