fix: Username not visible after edit events
This commit is contained in:
parent
82f4c326b4
commit
a06b3e6a9e
1 changed files with 8 additions and 7 deletions
|
|
@ -81,9 +81,10 @@ class Message extends StatelessWidget {
|
||||||
EventTypes.Message,
|
EventTypes.Message,
|
||||||
EventTypes.Sticker,
|
EventTypes.Sticker,
|
||||||
EventTypes.Encrypted,
|
EventTypes.Encrypted,
|
||||||
].contains(nextEvent!.type)
|
].contains(nextEvent!.type) &&
|
||||||
? nextEvent!.senderId == event.senderId && !displayTime
|
nextEvent?.relationshipType == null &&
|
||||||
: false;
|
nextEvent!.senderId == event.senderId &&
|
||||||
|
!displayTime;
|
||||||
final textColor = ownMessage
|
final textColor = ownMessage
|
||||||
? Theme.of(context).colorScheme.onPrimary
|
? Theme.of(context).colorScheme.onPrimary
|
||||||
: Theme.of(context).colorScheme.onBackground;
|
: Theme.of(context).colorScheme.onBackground;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue