+4
models.js
+4
models.js
···
287
287
return -1;
288
288
} else if (a.author.did != this.author.did && b.author.did == this.author.did) {
289
289
return 1;
290
+
} else if (a.text != "๐" && b.text == "๐") {
291
+
return -1;
292
+
} else if (a.text == "๐" && b.text != "๐") {
293
+
return 1;
290
294
} else if (a.createdAt.getTime() < b.createdAt.getTime()) {
291
295
return -1;
292
296
} else if (a.createdAt.getTime() > b.createdAt.getTime()) {