mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 04:15:17 +00:00
Fixed issue on iOS 9
This commit is contained in:
@ -115,7 +115,7 @@ ComunicWeb.components.conversations.unreadDropdown = {
|
||||
var usersID = [];
|
||||
|
||||
//Process the list of conversations
|
||||
for (let index = 0; index < conversations.length; index++) {
|
||||
for (var index = 0; index < conversations.length; index++) {
|
||||
const entry = conversations[index];
|
||||
|
||||
var userID = entry.userID;
|
||||
@ -153,7 +153,7 @@ ComunicWeb.components.conversations.unreadDropdown = {
|
||||
target.innerHTML = "";
|
||||
|
||||
//Process each conversation
|
||||
for (let index = 0; index < conversations.length; index++) {
|
||||
for (var index = 0; index < conversations.length; index++) {
|
||||
|
||||
//Get the conversation
|
||||
const conversation = conversations[index];
|
||||
|
Reference in New Issue
Block a user