Add hub as argument #3 to authentication calls.

Esse commit está contido em:
Daniel Howard
2014-06-27 15:37:18 -07:00
commit ed404bffcb
+2 -2
Ver Arquivo
@@ -84,12 +84,12 @@ Hub.prototype.get = function(req, fn) {
o_.bind(session.receivedUpdate, session)); o_.bind(session.receivedUpdate, session));
this.set(req.sessionID, session); this.set(req.sessionID, session);
fn(null, session); fn(null, session);
}, this)); }, this), this);
session.status(null, {status: packages.STATUSES[0], message: ''}); session.status(null, {status: packages.STATUSES[0], message: ''});
} else { } else {
fn(); fn();
} }
}, this)); }, this), this);
} }
}; };