mirror of
https://github.com/ilyakooo0/urbit.git
synced 2025-01-05 22:03:50 +03:00
parent
c19acbb041
commit
df4d392ca7
@ -238,8 +238,8 @@ export default class ChatWindow extends Component<ChatWindowProps, ChatWindowSta
|
|||||||
.sort((a, b) => a.when - b.when)
|
.sort((a, b) => a.when - b.when)
|
||||||
.forEach((message, index) => {
|
.forEach((message, index) => {
|
||||||
index = index + 1; // To 1-index it
|
index = index + 1; // To 1-index it
|
||||||
messages.set(envelopes.length + index, message);
|
messages.set(mailboxSize + index, message);
|
||||||
lastMessage = envelopes.length + index;
|
lastMessage = mailboxSize + index;
|
||||||
});
|
});
|
||||||
|
|
||||||
const messageProps = { association, group, contacts, hideAvatars, hideNicknames, remoteContentPolicy };
|
const messageProps = { association, group, contacts, hideAvatars, hideNicknames, remoteContentPolicy };
|
||||||
|
Loading…
Reference in New Issue
Block a user