Skip to content

Commit

Permalink
Fix req -> res in request.js
Browse files Browse the repository at this point in the history
  • Loading branch information
avaer committed Aug 9, 2019
1 parent 6f592de commit de46297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const {url, int32Array} = workerData;
int32Array[2] = 0;
}
} else {
int32Array[1] = req.status;
int32Array[1] = res.status;
int32Array[2] = 0;
}
})().catch(err => {
Expand Down

0 comments on commit de46297

Please sign in to comment.