]> jfr.im git - irc/quakenet/qwebirc.git/commitdiff
Fix Q not being recognised.
authorChris Porter <redacted>
Sun, 1 Feb 2009 23:34:55 +0000 (23:34 +0000)
committerChris Porter <redacted>
Sun, 1 Feb 2009 23:34:55 +0000 (23:34 +0000)
js/irc/ircclient.js
js/qwebircinterface.js
js/version.js

index aade96fc3e1253bb0ab97288938a38bd055b068f..a4933f00439c7733c0dc1110be1f559a2187801b 100644 (file)
@@ -436,7 +436,7 @@ qwebirc.irc.IRCClient = new Class({
     this.checkLogin(user, message);
   },
   isNetworkService: function(user) {
-    return this.ui.options.networkServices[user];
+    return this.ui.options.networkServices.indexOf(user) > -1;
   },
   __joinInvited: function() {
     this.exec("/JOIN " + this.inviteChanList.join(","));
index c525a2ca84bb15c304dd9e17a3f503fcd0f006a0..100ad19fd75b73ecac4f7c60dd9f5aad3138001e 100644 (file)
@@ -4,7 +4,7 @@ qwebirc.ui.Interface = new Class({
     initialNickname: "qwebirc" + Math.ceil(Math.random() * 100000),
     initialChannels: "",
     networkName: "QuakeNet",
-    networkServices: ["Q!TheQBot@QuakeNet.org"],
+    networkServices: ["Q!TheQBot@CServe.quakenet.org"],
     loginRegex: "^You are now logged in as [^ ]+\\.$",
     appTitle: "QuakeNet Web IRC",
     searchURL: true,
index 23cc1af06e9f9fc66b039cb45fe6a57ef1b0ce2f..42a8338912ff04e2201d37a289dce89e8e2a1021 100644 (file)
@@ -1 +1 @@
-qwebirc.VERSION = "0.75"
+qwebirc.VERSION = "0.80"