Syntax error fixed

This commit is contained in:
Abdussamed 2024-04-05 10:30:39 +03:00
parent 8d3c116a0b
commit eeee824b20
1 changed files with 2 additions and 2 deletions

View File

@ -133,9 +133,9 @@ Client.prototype.getSucureClients = function()
let pairs = new Map(); let pairs = new Map();
let roompairs = new Map(); let roompairs = new Map();
for (const [id, client] of this.pairs) for (const id of this.pairs)
{ {
pairs.set(id, client) pairs.set(id, Client.clients.get(id))
} }
// Aynı odada bulunan kullanıcı // Aynı odada bulunan kullanıcı