chore: Follow up seen by row

This commit is contained in:
krille-chan 2026-02-15 20:51:00 +01:00
parent 10a138bb6f
commit ecd13b7efc
No known key found for this signature in database

View file

@ -24,7 +24,10 @@ class SeenByRow extends StatelessWidget {
false,
),
builder: (context, asyncSnapshot) {
final seenByUsers = event.receipts.map((r) => r.user).toList();
final seenByUsers = event.receipts
.map((r) => r.user)
.where((user) => user.id != event.room.client.userID)
.toList();
return Container(
width: double.infinity,
alignment: Alignment.center,