summaryrefslogtreecommitdiff
path: root/ui/lib/store/messages.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/lib/store/messages.js')
-rw-r--r--ui/lib/store/messages.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/lib/store/messages.js b/ui/lib/store/messages.js
index 931b8fb..7d1fbe1 100644
--- a/ui/lib/store/messages.js
+++ b/ui/lib/store/messages.js
@@ -17,9 +17,6 @@ export class Messages {
for (let { channel, id, at, sender, body } of messages) {
this.inChannel(channel).push({ id, at, sender, body, });
}
- for (let channel in this.channels) {
- this.channels[channel].sort((a, b) => a.at - b.at);
- }
return this;
}