Update lib/views/chat.dart, CHANGELOG.md, pubspec.yaml files
This commit is contained in:
parent
05bdd5968a
commit
325aed437b
3 changed files with 6 additions and 2 deletions
|
|
@ -153,7 +153,7 @@ class _ChatState extends State<_Chat> {
|
|||
"body": sendController.text,
|
||||
};
|
||||
if (replyEvent != null) {
|
||||
String replyText = ("<${room.client.userID}> " + replyEvent.body);
|
||||
String replyText = ("<${replyEvent.senderId}> " + replyEvent.body);
|
||||
List<String> replyTextLines = replyText.split("\n");
|
||||
for (int i = 0; i < replyTextLines.length; i++) {
|
||||
replyTextLines[i] = "> " + replyTextLines[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue