Skip to content

Commit

Permalink
Fixes metajack#47: send() now sends data immediately instead of on th…
Browse files Browse the repository at this point in the history
…e idle period.
  • Loading branch information
metajack committed Jan 1, 2010
1 parent 8e4544f commit c5d0e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.js
Expand Up @@ -1721,7 +1721,7 @@ Strophe.Connection.prototype = {

this._throttledRequestHandler();
clearTimeout(this._idleTimeout);
this._idleTimeout = setTimeout(this._onIdle.bind(this), 100);
this._onIdle();
},

/** Function: sendIQ
Expand Down

0 comments on commit c5d0e05

Please sign in to comment.