Merge pull request #1927 from ralder/patch-1

fix disappeared status of folder after restart syncthing
This commit is contained in:
Jakob Borg 2015-06-11 08:47:53 +02:00
commit 8fb4ce6cad
1 changed files with 5 additions and 0 deletions

View File

@ -521,6 +521,11 @@ angular.module('syncthing.core')
if ($scope.model[folderCfg.id].state == 'error') {
return 'stopped'; // legacy, the state is called "stopped" in the GUI
}
// after restart syncthing process state may be empty
if (!$scope.model[folderCfg.id].state) {
return 'unknown';
}
return '' + $scope.model[folderCfg.id].state;
};