Fix iOS 9 issue

This commit is contained in:
Pierre 2018-05-14 16:58:23 +02:00
parent 4ec6213877
commit 701d070efd

View File

@ -87,9 +87,9 @@ ComunicWeb.pages.conversations.listPane = {
});
//Process the list of conversations
for (const num in list) {
for (var num in list) {
if (list.hasOwnProperty(num)) {
const conversation = list[num];
var conversation = list[num];
//Display conversation element
this._display_entry(conversationsContainer, conversation, args);