chore: Update matrix dart sdk

This commit is contained in:
Christian Kußowski 2025-11-12 11:05:52 +01:00
commit 4f3629ccf4
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
4 changed files with 10 additions and 8 deletions

View file

@ -498,10 +498,12 @@ class Message extends StatelessWidget {
CrossAxisAlignment
.start,
children: <Widget>[
if (RelationshipTypes
.reply ==
event
.relationshipType)
if (event
.inReplyToEventId(
includingFallback:
false,
) !=
null)
FutureBuilder<Event?>(
future: event
.getReplyEvent(

View file

@ -79,7 +79,7 @@ class HomeserverPickerController extends State<HomeserverPicker> {
homeserver = Uri.https(homeserverInput, '');
}
final client = await Matrix.of(context).getLoginClient();
final (_, _, loginFlows) = await client.checkHomeserver(homeserver);
final (_, _, loginFlows, _) = await client.checkHomeserver(homeserver);
this.loginFlows = loginFlows;
if (supportsSso && !legacyPasswordLogin) {
if (!PlatformInfos.isMobile) {