[Fixed] Changed IP Endpoint
This commit is contained in:
parent
d48aefaa2c
commit
ec6b2def78
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ DNSPort %s
|
||||||
while retries < 12 and not my_public_ip:
|
while retries < 12 and not my_public_ip:
|
||||||
retries += 1
|
retries += 1
|
||||||
try:
|
try:
|
||||||
my_public_ip = load(urlopen('https://check.torproject.org/api/ip'))['IP']
|
my_public_ip = load(urlopen('https://api.ipify.org?format=json'))['ip']
|
||||||
except URLError:
|
except URLError:
|
||||||
sleep(5)
|
sleep(5)
|
||||||
print(" [\033[93m?\033[0m] Still waiting for IP address...")
|
print(" [\033[93m?\033[0m] Still waiting for IP address...")
|
||||||
|
|
Loading…
Reference in a new issue