Procházet zdrojové kódy

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 před 10 roky
rodič
revize
73fa397c77
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;
                 }