Compare commits

...
2 changed files with 4 additions and 4 deletions
@@ -78,7 +78,7 @@ angular.module('syncthing.core')
$scope.version = data.version;
}).error($scope.emitHTTPError);
$http.get(urlbase + '/system/report').success(function (data) {
$http.get(urlbase + '/svc/report').success(function (data) {
$scope.reportData = data;
}).error($scope.emitHTTPError);
@@ -385,7 +385,7 @@ angular.module('syncthing.core')
}
function refreshErrors() {
$http.get(urlbase + '/system/errors').success(function (data) {
$http.get(urlbase + '/system/error').success(function (data) {
$scope.errors = data.errors;
console.log("refreshErrors", data);
}).error($scope.emitHTTPError);
File diff suppressed because one or more lines are too long