mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-04-01 02:42:23 -05:00
fix: remove use of comma separator (#1186)
This commit is contained in:
parent
e9b3907859
commit
f20fefaf87
1 changed files with 6 additions and 3 deletions
|
@ -324,17 +324,20 @@ class Storage implements IStorageHandler {
|
|||
lstream.pipe(stream, {end: false});
|
||||
lstream.on('error', function(err) {
|
||||
self.logger.error({err: err}, 'uplink error: @{err.message}');
|
||||
cb(), cb = function() {};
|
||||
cb();
|
||||
cb = function() {};
|
||||
});
|
||||
lstream.on('end', function() {
|
||||
cb(), cb = function() {};
|
||||
cb();
|
||||
cb = function() {};
|
||||
});
|
||||
|
||||
stream.abort = function() {
|
||||
if (lstream.abort) {
|
||||
lstream.abort();
|
||||
}
|
||||
cb(), cb = function() {};
|
||||
cb();
|
||||
cb = function() {};
|
||||
};
|
||||
},
|
||||
// executed after all series
|
||||
|
|
Loading…
Add table
Reference in a new issue