Change URL for proxy test (#2434)
This commit is contained in:
parent
22dd5baf23
commit
ad01e95ec4
|
@ -31,8 +31,7 @@ export default Vue.extend({
|
|||
return {
|
||||
isLoading: false,
|
||||
dataAvailable: false,
|
||||
proxyTestUrl: 'https://api.ipify.org?format=json',
|
||||
proxyTestUrl1: 'https://freegeoip.app/json/',
|
||||
proxyTestUrl: 'https://ipwho.is/',
|
||||
proxyId: '',
|
||||
proxyCountry: '',
|
||||
proxyRegion: '',
|
||||
|
@ -125,11 +124,11 @@ export default Vue.extend({
|
|||
if (!this.useProxy) {
|
||||
this.enableProxy()
|
||||
}
|
||||
$.getJSON(this.proxyTestUrl1, (response) => {
|
||||
$.getJSON(this.proxyTestUrl, (response) => {
|
||||
console.log(response)
|
||||
this.proxyIp = response.ip
|
||||
this.proxyCountry = response.country_name
|
||||
this.proxyRegion = response.region_name
|
||||
this.proxyCountry = response.country
|
||||
this.proxyRegion = response.region
|
||||
this.proxyCity = response.city
|
||||
this.dataAvailable = true
|
||||
}).fail((xhr, textStatus, error) => {
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
class="center"
|
||||
:style="{opacity: useProxy ? 1 : 0.4}"
|
||||
>
|
||||
{{ $t('Settings.Proxy Settings.Clicking on Test Proxy will send a request to') }} https://freegeoip.app/json/
|
||||
{{ $t('Settings.Proxy Settings.Clicking on Test Proxy will send a request to') }} {{ proxyTestUrl }}
|
||||
</p>
|
||||
<ft-flex-box>
|
||||
<ft-button
|
||||
|
|
Loading…
Reference in New Issue