Kaynağa Gözat

Merged with master

adolfintel 7 yıl önce
ebeveyn
işleme
78f4abd919

+ 12 - 2
Frontend/speedtest_worker.js

@@ -475,7 +475,12 @@ function ulTest(done) {
 							testStream(i, 0);
 							testStream(i, 0);
 						};
 						};
 						xhr[i].open("POST", settings.url_ul + url_sep(settings.url_ul) + "r=" + Math.random(), true); // random string to prevent caching
 						xhr[i].open("POST", settings.url_ul + url_sep(settings.url_ul) + "r=" + Math.random(), true); // random string to prevent caching
-						xhr[i].setRequestHeader("Content-Encoding", "identity"); // disable compression (some browsers may refuse it, but data is incompressible anyway)
+						try{
+							xhr[i].setRequestHeader("Content-Encoding", "identity"); // disable compression (some browsers may refuse it, but data is incompressible anyway)
+						}catch(e){}
+						try{
+							xhr[i].setRequestHeader("Content-Type", "application/octet-stream"); //force content-type to application/octet-stream in case the server misinterprets it
+						}catch(e){}
 						xhr[i].send(reqsmall);
 						xhr[i].send(reqsmall);
 					} else {
 					} else {
 						// REGULAR version, no workaround
 						// REGULAR version, no workaround
@@ -508,7 +513,12 @@ function ulTest(done) {
 						}.bind(this);
 						}.bind(this);
 						// send xhr
 						// send xhr
 						xhr[i].open("POST", settings.url_ul + url_sep(settings.url_ul) + "r=" + Math.random(), true); // random string to prevent caching
 						xhr[i].open("POST", settings.url_ul + url_sep(settings.url_ul) + "r=" + Math.random(), true); // random string to prevent caching
-						xhr[i].setRequestHeader("Content-Encoding", "identity"); // disable compression (some browsers may refuse it, but data is incompressible anyway)
+						try{
+							xhr[i].setRequestHeader("Content-Encoding", "identity"); // disable compression (some browsers may refuse it, but data is incompressible anyway)
+						}catch(e){}
+						try{
+							xhr[i].setRequestHeader("Content-Type", "application/octet-stream"); //force content-type to application/octet-stream in case the server misinterprets it
+						}catch(e){}
 						xhr[i].send(req);
 						xhr[i].send(req);
 					}
 					}
 				}.bind(this),
 				}.bind(this),

Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
Frontend/speedtest_worker.min.js


Bu fark içinde çok fazla dosya değişikliği olduğu için bazı dosyalar gösterilmiyor