mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
SEARCH-539 & SEARCH-206
- Removed the multiplication (receiving bytes)
This commit is contained in:
@@ -32,7 +32,7 @@ function checkDiskSpace(path, callback) {
|
||||
let data = stdout.trim().split("\n");
|
||||
|
||||
let disk_info_str = data[data.length - 1].split(':');
|
||||
return callback(null, disk_info_str[1] * 1024);
|
||||
return callback(null, disk_info_str[1]);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user