We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea3dc9 commit f733c83Copy full SHA for f733c83
adapter.js
@@ -23,6 +23,12 @@ class XmppBot extends Adapter {
23
// Store the room JID to private JID map.
24
// Key is the room JID, value is the private JID
25
this.roomToPrivateJID = {};
26
+
27
+ this.error = this.error.bind(this)
28
+ this.online = this.online.bind(this)
29
+ this.offline = this.offline.bind(this)
30
+ this.read = this.read.bind(this)
31
+ this.ping = this.ping.bind(this)
32
}
33
34
run() {
0 commit comments