Merge pull request #99 from MinusGix/joinToHash

Switch accessed property to hash
This commit is contained in:
marzavec
2020-03-16 09:40:45 -05:00
committed by GitHub
+2 -2
View File
@@ -144,7 +144,7 @@ export async function run(core, server, socket, data) {
nick: newPeerList[i].nick,
trip: newPeerList[i].trip,
utype: newPeerList[i].uType, /* @legacy */
hash: newPeerList[i].userHash,
hash: newPeerList[i].hash,
level: newPeerList[i].level,
userid: newPeerList[i].userid,
channel: data.channel,
@@ -166,7 +166,7 @@ export async function run(core, server, socket, data) {
nick: socket.nick,
trip: socket.trip,
utype: socket.uType,
hash: socket.userHash,
hash: socket.hash,
level: socket.level,
userid: socket.userid,
channel: data.channel,