chore: Try out experimental new matrix sdk version with performance leak fix

This commit is contained in:
Christian Kußowski 2025-10-31 08:30:36 +01:00
commit 60f688afa9
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
3 changed files with 17 additions and 13 deletions

View file

@ -87,9 +87,9 @@ class ChatAccessSettingsController extends State<ChatAccessSettings> {
try {
await room.setJoinRules(
newJoinRules,
allowConditionRoomId: {JoinRules.restricted, JoinRules.knockRestricted}
allowConditionRoomIds: {JoinRules.restricted, JoinRules.knockRestricted}
.contains(newJoinRules)
? knownSpaceParents.first.id
? knownSpaceParents.map((parent) => parent.id).toList()
: null,
);
} catch (e, s) {