chore: Revert onRoomUpdate logic

This commit is contained in:
Christian Pauly 2022-08-10 21:47:24 +02:00
parent fbe8ecaad5
commit 9d5949820d
1 changed files with 1 additions and 11 deletions

View File

@ -120,12 +120,6 @@ class ChatView extends StatelessWidget {
}
}
bool hasRoomStateUpdate(SyncUpdate syncUpdate) =>
syncUpdate.rooms?.leave?[controller.roomId]?.state?.isNotEmpty == true ||
syncUpdate.rooms?.invite?[controller.roomId]?.inviteState?.isNotEmpty ==
true ||
syncUpdate.rooms?.join?[controller.roomId]?.state?.isNotEmpty == true;
@override
Widget build(BuildContext context) {
controller.matrix ??= Matrix.of(context);
@ -163,11 +157,7 @@ class ChatView extends StatelessWidget {
onTapDown: controller.setReadMarker,
behavior: HitTestBehavior.opaque,
child: StreamBuilder(
stream: Matrix.of(context)
.client
.onSync
.stream
.where(hasRoomStateUpdate)
stream: controller.room!.onUpdate.stream
.rateLimit(const Duration(seconds: 1)),
builder: (context, snapshot) => FutureBuilder<bool>(
future: controller.getTimeline(),