Skip to content

Commit

Permalink
jsonp-polling: fixed open check
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Jul 24, 2012
1 parent bf76f92 commit 49ac184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/transports/jsonp-polling.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@

JSONPPolling.prototype._ = function (msg) {
this.onData(msg);
if (this.open) {
if (this.isOpen) {
this.get();
}
return this;
Expand Down

0 comments on commit 49ac184

Please sign in to comment.