mirror of
https://github.com/syncthing/syncthing.git
synced 2024-11-15 18:08:45 -07:00
cmd/strelaypoolsrv: Remove hostnames from statusAddr
This commit is contained in:
parent
7db00132b2
commit
309795198d
@ -250,7 +250,7 @@
|
|||||||
return a.value > b.value ? 1 : -1;
|
return a.value > b.value ? 1 : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
$http.get("http://relays.syncthing.net/endpoint").then(function(response) {
|
$http.get("/endpoint").then(function(response) {
|
||||||
$scope.relays = response.data.relays;
|
$scope.relays = response.data.relays;
|
||||||
var promises = [];
|
var promises = [];
|
||||||
angular.forEach($scope.relays, function(relay) {
|
angular.forEach($scope.relays, function(relay) {
|
||||||
@ -337,7 +337,8 @@
|
|||||||
var timeoutRequest = $q.defer();
|
var timeoutRequest = $q.defer();
|
||||||
var resolveStatus = $q.defer();
|
var resolveStatus = $q.defer();
|
||||||
|
|
||||||
$http.get("http://" + relay.uri.hostname + (relay.uri.args.statusAddr || ":22070") + "/status", { timeout: timeoutRequest.promise }).then(function (response) {
|
|
||||||
|
$http.get("http://" + relay.uri.hostname + ':' + ((relay.uri.args.statusAddr && relay.uri.args.statusAddr.split(':')[1]) || "22070") + "/status", { timeout: timeoutRequest.promise }).then(function (response) {
|
||||||
relay.status = response.data;
|
relay.status = response.data;
|
||||||
resolveStatus.resolve();
|
resolveStatus.resolve();
|
||||||
angular.forEach($scope.totals, function(value, key) {
|
angular.forEach($scope.totals, function(value, key) {
|
||||||
|
Loading…
Reference in New Issue
Block a user