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) {
|
builder: (context, asyncSnapshot) {
|
||||||
final seenByUsers = event.receipts
|
final seenByUsers = event.receipts
|
||||||
.map((r) => r.user)
|
.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();
|
.toList();
|
||||||
return Container(
|
return Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue