Skip to content

Commit 601dd5c

Browse files
authored
Merge pull request #130 from Pradhyumna02/Edge-Fix
Commenting out timeout as it's not working on edge
2 parents 1dcbf26 + bf907f2 commit 601dd5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "speed-testjs",
3-
"version": "1.0.33",
3+
"version": "1.0.34",
44
"description": "measure internet bandwidth",
55
"main": "index.js",
66
"author": "Maulan Byron",

public/lib/xmlhttprequest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
this.id = id;
8888
this.transferSize = size;
8989
this._request.open(this.method, this.url, true);
90-
this._request.timeout = this.timeout;
90+
// this._request.timeout = this.timeout;
9191
this.requestTimeout = setTimeout(this._internalAbort.bind(this), this.timeout);
9292
if(this.method==='POST') {
9393
this.transferSize = payload.size;

0 commit comments

Comments
 (0)