Fix intermittent conversation sort order problem (#1558)
We were inserting based on what was already in the DOM, instead of using the index from our conversation collection. FREEBIE
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
}
|
||||
var title1 = m1.getTitle().toLowerCase();
|
||||
var title2 = m2.getTitle().toLowerCase();
|
||||
if (title1 === title2) {
|
||||
if (title1 === title2) {
|
||||
return 0;
|
||||
}
|
||||
if (title1 < title2) {
|
||||
|
Reference in New Issue
Block a user