apparently readline expects a 'close' event listener, not 'end'

pull/1/head
ansuz 2019-09-30 17:14:11 +02:00
parent 16e8c96210
commit afae5d7f85
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ var getMetadataAtPath = function (Env, path, _cb) {
return void cb("INVALID_METADATA");
}
})
.on('end', cb)
.on('close', cb)
.on('error', cb);
};