refactor: Use onRoomState stream instead of room.onUpdate to not update on messages but state changes only
This commit is contained in:
parent
06b2e6c14f
commit
ff54610e5b
6 changed files with 12 additions and 6 deletions
|
|
@ -22,7 +22,8 @@ class ChatAccessSettingsPageView extends StatelessWidget {
|
|||
),
|
||||
body: MaxWidthBody(
|
||||
child: StreamBuilder<Object>(
|
||||
stream: room.onUpdate.stream,
|
||||
stream: room.client.onRoomState.stream
|
||||
.where((update) => update.roomId == controller.room.id),
|
||||
builder: (context, snapshot) {
|
||||
final canonicalAlias = room.canonicalAlias;
|
||||
final altAliases = room
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue