refactor: Use onRoomState stream instead of room.onUpdate to not update on messages but state changes only

This commit is contained in:
krille-chan 2024-05-19 07:52:18 +02:00
commit ff54610e5b
No known key found for this signature in database
6 changed files with 12 additions and 6 deletions

View file

@ -150,7 +150,8 @@ class ChatView extends StatelessWidget {
}
},
child: StreamBuilder(
stream: controller.room.onUpdate.stream
stream: controller.room.client.onRoomState.stream
.where((update) => update.roomId == controller.room.id)
.rateLimit(const Duration(seconds: 1)),
builder: (context, snapshot) => FutureBuilder(
future: controller.loadTimelineFuture,