Skip to content

Commit

Permalink
Fixed a bug that prevented GET parameters from being used in url_tele…
Browse files Browse the repository at this point in the history
…metry
  • Loading branch information
adolfintel committed Mar 5, 2018
1 parent 7366963 commit e3d35dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion speedtest_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ function sendTelemetry(){
xhr = new XMLHttpRequest()
xhr.onload = function () { console.log('TELEMETRY OL '+xhr.responseText) }
xhr.onerror = function () { console.log('TELEMETRY ERROR '+xhr) }
xhr.open('POST', settings.url_telemetry+"?r="+Math.random(), true);
xhr.open('POST', settings.url_telemetry+url_sep(settings.url_telemetry)+"r="+Math.random(), true);
try{
var fd = new FormData()
fd.append('dl', dlStatus)
Expand Down
Loading

0 comments on commit e3d35dc

Please sign in to comment.