2
0
Эх сурвалжийг харах

Fix no messages being shown in chat (first_msg_date is null, code checked for undefined only)
Maybe related to message archive feature or different jQuery version

Christoph 10 жил өмнө
parent
commit
73fa397c77
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      converse.js

+ 1 - 1
converse.js

@@ -1384,7 +1384,7 @@
                 var $first_msg = this.$content.children('.chat-message:first'),
                     first_msg_date = $first_msg.data('isodate'),
                     last_msg_date, current_msg_date, day_date, $msgs, msg_dates, idx;
-                if (typeof first_msg_date === "undefined") {
+                if (!first_msg_date) {
                     this.appendMessage(attrs);
                     return;
                 }