Syntax error fixed
This commit is contained in:
parent
8d3c116a0b
commit
eeee824b20
|
@ -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ı
|
||||||
|
|
Loading…
Reference in New Issue