Merge pull request #1 from adolfintel/master

Fixed a bug that prevented GET parameters from being used in url_tele…
This commit is contained in:
Harry DS Alsyundawy 2018-03-05 21:11:07 +07:00 committed by GitHub
commit 365d8f7a2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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)

File diff suppressed because one or more lines are too long