chat: prepend new pending messages, not append

This commit is contained in:
Matilde Park 2020-04-28 20:12:38 -04:00
parent 3196179fbd
commit 6836135b71

View File

@ -72,7 +72,7 @@ class UrbitApi {
addPendingMessage(msg) {
if (store.state.pendingMessages.has(msg.path)) {
store.state.pendingMessages.get(msg.path).push(msg.envelope);
store.state.pendingMessages.get(msg.path).unshift(msg.envelope);
} else {
store.state.pendingMessages.set(msg.path, [msg.envelope]);
}