Skip to content

Commit d65d1ed

Browse files
committed
Fix WEBIRC line, thanks thommey.
1 parent 9d99627 commit d65d1ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qwebirc/ircclient.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def connectionMade(self):
8080
hmac = hmacfn(ident, ip)
8181
self.write("USER %s bleh bleh %s %s :%s" % (ident, ip, hmac, realname))
8282
elif config.WEBIRC_MODE == "webirc":
83-
self.write("WEBIRC %s qwebirc %s %s" % (config.WEBIRC_PASSWORD, ip, hostname))
83+
self.write("WEBIRC %s qwebirc %s %s" % (config.WEBIRC_PASSWORD, hostname, ip))
8484
self.write("USER %s bleh %s :%s" % (ident, ip, realname))
8585
else:
8686
if ip == hostname:

0 commit comments

Comments
 (0)