mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-23 11:28:59 +00:00
Check if announcement data is available
This commit is contained in:
parent
a8ba7786ae
commit
bc8907e90d
@ -268,7 +268,7 @@ angular.module('syncthing.core')
|
|||||||
$http.get(urlbase + '/system').success(function (data) {
|
$http.get(urlbase + '/system').success(function (data) {
|
||||||
$scope.myID = data.myID;
|
$scope.myID = data.myID;
|
||||||
$scope.system = data;
|
$scope.system = data;
|
||||||
$scope.announceServersTotal = Object.keys(data.extAnnounceOK).length;
|
$scope.announceServersTotal = data.extAnnounceOK ? Object.keys(data.extAnnounceOK).length : 0;
|
||||||
var failed = [];
|
var failed = [];
|
||||||
for (var server in data.extAnnounceOK) {
|
for (var server in data.extAnnounceOK) {
|
||||||
if (!data.extAnnounceOK[server]) {
|
if (!data.extAnnounceOK[server]) {
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user