/rest/version should return JSON (fixes #694)

This commit is contained in:
Jakob Borg
2014-09-18 12:52:45 +02:00
parent 37a473e7d6
commit d7956dd495
3 changed files with 9 additions and 3 deletions

View File

@@ -390,7 +390,7 @@ syncthing.controller('SyncthingCtrl', function ($scope, $http, $translate, $loca
refreshNodeStats();
$http.get(urlbase + '/version').success(function (data) {
$scope.version = data;
$scope.version = data.version;
});
$http.get(urlbase + '/report').success(function (data) {