Commit 2e3eaa5d authored by JC Brand's avatar JC Brand

Bugfix. The stanza wasn't being passed into the handlers.

parent dac013b2
...@@ -1832,8 +1832,8 @@ ...@@ -1832,8 +1832,8 @@
from: converse.connection.jid, from: converse.connection.jid,
type: "get" type: "get"
}).c("query", {xmlns: Strophe.NS.DISCO_ITEMS}), }).c("query", {xmlns: Strophe.NS.DISCO_ITEMS}),
$.proxy(function (iq) { this.onRoomsFound(); }, this), this.onRoomsFound.bind(this),
$.proxy(function (iq) { this.informNoRoomsFound(); }, this) this.informNoRoomsFound.bind(this)
); );
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment