mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-18 20:05:16 +00:00
Fixed issue on iOS 9
This commit is contained in:
@ -171,7 +171,7 @@ ComunicWeb.components.notifications.dropdown = {
|
||||
list.innerHTML = "";
|
||||
|
||||
//Process the list of notifications
|
||||
for (let i = 0; i < result.length; i++) {
|
||||
for (var i = 0; i < result.length; i++) {
|
||||
const notification = result[i];
|
||||
|
||||
//Display the notification
|
||||
|
@ -16,7 +16,7 @@ ComunicWeb.components.notifications.utils = {
|
||||
|
||||
var users = [];
|
||||
|
||||
for (let index = 0; index < list.length; index++) {
|
||||
for (var index = 0; index < list.length; index++) {
|
||||
const notif = list[index];
|
||||
|
||||
if(!users.includes(notif.from_user_id))
|
||||
|
Reference in New Issue
Block a user