diff --git a/gui/syncthing/core/syncthingController.js b/gui/syncthing/core/syncthingController.js index 5da13e88f..0211d5bcd 100755 --- a/gui/syncthing/core/syncthingController.js +++ b/gui/syncthing/core/syncthingController.js @@ -1043,6 +1043,9 @@ angular.module('syncthing.core') }; $scope.errorList = function () { + if (!$scope.errors) { + return []; + } return $scope.errors.filter(function (e) { return e.time > $scope.seenError; });