chore: Follow up seen by row
This commit is contained in:
parent
2b17e7401b
commit
1a8a5c6187
1 changed files with 5 additions and 1 deletions
|
|
@ -26,7 +26,11 @@ class SeenByRow extends StatelessWidget {
|
|||
builder: (context, asyncSnapshot) {
|
||||
final seenByUsers = event.receipts
|
||||
.map((r) => r.user)
|
||||
.where((user) => user.id != event.room.client.userID)
|
||||
.where(
|
||||
(user) =>
|
||||
user.id != event.room.client.userID &&
|
||||
user.id != event.senderId,
|
||||
)
|
||||
.toList();
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue