From 6a9fd28a2bc05ce6d29d991a85cff6b8491bc114 Mon Sep 17 00:00:00 2001 From: Simon Ramsay Date: Thu, 30 Mar 2017 17:03:45 -0400 Subject: [PATCH] updated checktor test url old value's HTTPS certificate was invalid for antani.tor2web.org since it is only valid for onion.to and *.onion.to --- misc/checktor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/checktor.js b/misc/checktor.js index 582159a8..5939f54b 100644 --- a/misc/checktor.js +++ b/misc/checktor.js @@ -10,7 +10,7 @@ function checkTor(yes_cb, no_cb, test_url) { // redirects the user to provided url try { if (typeof(test_url) === 'undefined') { - var test_url = 'https://antani.tor2web.org/checktor'; + var test_url = 'https://antani.onion.to/checktor'; } if (window.XMLHttpRequest) { var xmlhttp = new XMLHttpRequest();