chore: Follow up seen by row
This commit is contained in:
parent
10a138bb6f
commit
ecd13b7efc
1 changed files with 4 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue