mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-12 15:01:38 +03:00
chat: prepend new pending messages, not append
This commit is contained in:
parent
3196179fbd
commit
6836135b71
@ -72,7 +72,7 @@ class UrbitApi {
|
|||||||
|
|
||||||
addPendingMessage(msg) {
|
addPendingMessage(msg) {
|
||||||
if (store.state.pendingMessages.has(msg.path)) {
|
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 {
|
} else {
|
||||||
store.state.pendingMessages.set(msg.path, [msg.envelope]);
|
store.state.pendingMessages.set(msg.path, [msg.envelope]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user