This commit is contained in:
Audrius Butkevicius
2015-04-07 13:57:26 +01:00
parent ab25cd09ed
commit 68ff4f3842
5 changed files with 13 additions and 10 deletions

View File

@@ -24,6 +24,7 @@ angular.module('syncthing.core')
$scope.config = {};
$scope.configInSync = true;
$scope.connections = {};
$scope.connections_total = {};
$scope.errors = [];
$scope.model = {};
$scope.myID = '';
@@ -367,6 +368,8 @@ angular.module('syncthing.core')
id;
prevDate = now;
$scope.connections_total = data['total'];
data = data.connections;
for (id in data) {
if (!data.hasOwnProperty(id)) {
continue;