aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerass El Hafidi <fun@andrewyu.org>2024-03-22 15:02:30 +0000
committerFerass El Hafidi <fun@andrewyu.org>2024-03-22 15:02:30 +0000
commitfb16317f66b6861fe9a541823db99066813547df (patch)
treeac009948b7ad4a6910beb42fd563cc2874c497f6
parent23ceda552398623ebd135c799aea37285b7e867c (diff)
downloadgamja-fb16317f66b6861fe9a541823db99066813547df.tar.gz
gamja-fb16317f66b6861fe9a541823db99066813547df.zip
lib/client.js: hardcode username
-rw-r--r--lib/client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/client.js b/lib/client.js
index 36c1e79..8790af1 100644
--- a/lib/client.js
+++ b/lib/client.js
@@ -262,7 +262,7 @@ export default class Client extends EventTarget {
this.send({ command: "NICK", params: [this.nick] });
this.send({
command: "USER",
- params: [this.params.username, "0", "*", this.params.realname],
+ params: ["rx-webirc", "0", "*", this.params.realname],
});
}