gui: Fix division by zero in completion calc (ref #3493)

This commit is contained in:
Jakob Borg 2016-08-12 08:49:16 +02:00
parent 7776839c82
commit fa8f339478
1 changed files with 5 additions and 1 deletions

View File

@ -447,7 +447,11 @@ angular.module('syncthing.core')
total += $scope.completion[device][folder].globalBytes;
needed += $scope.completion[device][folder].needBytes;
}
$scope.completion[device]._total = 100 * (1 - needed / total);
if (total == 0) {
$scope.completion[device]._total = 100;
} else {
$scope.completion[device]._total = 100 * (1 - needed / total);
}
console.log("recalcCompletion", device, $scope.completion[device]);
}