Просмотр исходного кода

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 лет назад
Родитель
Сommit
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;
                 }