mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-29 02:55:55 -05:00
Update user username/hostname on JOIN
This commit is contained in:
parent
ecb2ee041b
commit
3746095175
1 changed files with 15 additions and 3 deletions
18
state.js
18
state.js
|
@ -311,7 +311,7 @@ export const State = {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let target, channel, topic, targets;
|
let target, channel, topic, targets, who;
|
||||||
switch (msg.command) {
|
switch (msg.command) {
|
||||||
case irc.RPL_MYINFO:
|
case irc.RPL_MYINFO:
|
||||||
// TODO: parse available modes
|
// TODO: parse available modes
|
||||||
|
@ -364,7 +364,7 @@ export const State = {
|
||||||
break;
|
break;
|
||||||
case irc.RPL_WHOREPLY:
|
case irc.RPL_WHOREPLY:
|
||||||
let last = msg.params[msg.params.length - 1];
|
let last = msg.params[msg.params.length - 1];
|
||||||
let who = {
|
who = {
|
||||||
username: msg.params[2],
|
username: msg.params[2],
|
||||||
hostname: msg.params[3],
|
hostname: msg.params[3],
|
||||||
server: msg.params[4],
|
server: msg.params[4],
|
||||||
|
@ -401,7 +401,19 @@ export const State = {
|
||||||
members.set(msg.prefix.name, "");
|
members.set(msg.prefix.name, "");
|
||||||
return { members };
|
return { members };
|
||||||
});
|
});
|
||||||
return { ...state, ...update };
|
state = { ...state, ...update };
|
||||||
|
|
||||||
|
who = { nick: msg.prefix.name, offline: false };
|
||||||
|
if (msg.prefix.user) {
|
||||||
|
who.username = msg.prefix.user;
|
||||||
|
}
|
||||||
|
if (msg.prefix.host) {
|
||||||
|
who.hostname = msg.prefix.host;
|
||||||
|
}
|
||||||
|
update = updateUser(msg.prefix.name, who);
|
||||||
|
state = { ...state, ...update };
|
||||||
|
|
||||||
|
return state;
|
||||||
case "PART":
|
case "PART":
|
||||||
channel = msg.params[0];
|
channel = msg.params[0];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue