Skip to content

Commit

Permalink
#77 Add missing var in for look
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwvickers authored Dec 7, 2020
1 parent a066207 commit b00d441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Session.prototype._debugResponse = function (source, buffer) {
}

Session.prototype.flush = function (error) {
for (id in this.reqs) {
for (var id in this.reqs) {
var req = this.reqRemove (id);
var sent = req.sent ? req.sent : new Date ();
req.callback (error, req.target, sent, new Date ());
Expand Down

0 comments on commit b00d441

Please sign in to comment.