aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/client.js b/lib/client.js
index e74add3..e7de03b 100644
--- a/lib/client.js
+++ b/lib/client.js
@@ -257,7 +257,7 @@ export default class Client extends EventTarget {
this.send({ command: "NICK", params: [this.nick] });
this.send({
command: "USER",
- params: ["rx-webirc", "0", "*", this.params.realname],
+ params: [this.params.username, "0", "*", this.params.realname],
});
}