fix: Client names being super long
This commit is contained in:
parent
b7053c2044
commit
2b550aa0a4
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue