Browse Source

Log/error fields changed name

Jakob Borg 10 years ago
parent
commit
240e7b0835
3 changed files with 5 additions and 5 deletions
  1. 1 1
      gui/index.html
  2. 2 2
      gui/syncthing/core/syncthingController.js
  3. 2 2
      lib/auto/gui.files.go

+ 1 - 1
gui/index.html

@@ -171,7 +171,7 @@
         <div class="panel panel-warning">
           <div class="panel-heading"><h3 class="panel-title"><span class="fa fa-exclamation-circle"></span><span translate>Notice</span></h3></div>
           <div class="panel-body">
-            <p ng-repeat="err in errorList()"><small>{{err.time | date:"yyyy-MM-dd HH:mm:ss"}}:</small> {{friendlyDevices(err.error)}}</p>
+            <p ng-repeat="err in errorList()"><small>{{err.when | date:"yyyy-MM-dd HH:mm:ss"}}:</small> {{friendlyDevices(err.message)}}</p>
           </div>
           <div class="panel-footer">
             <button type="button" class="btn btn-sm btn-default pull-right" ng-click="clearErrors()">

+ 2 - 2
gui/syncthing/core/syncthingController.js

@@ -1047,12 +1047,12 @@ angular.module('syncthing.core')
                 return [];
             }
             return $scope.errors.filter(function (e) {
-                return e.time > $scope.seenError;
+                return e.when > $scope.seenError;
             });
         };
 
         $scope.clearErrors = function () {
-            $scope.seenError = $scope.errors[$scope.errors.length - 1].time;
+            $scope.seenError = $scope.errors[$scope.errors.length - 1].when;
             $http.post(urlbase + '/system/error/clear');
         };
 

File diff suppressed because it is too large
+ 2 - 2
lib/auto/gui.files.go


Some files were not shown because too many files changed in this diff