apparently readline expects a 'close' event listener, not 'end'
This commit is contained in:
parent
82a0048082
commit
3ccca553bc
@ -95,7 +95,7 @@ var getMetadataAtPath = function (Env, path, _cb) {
|
|||||||
return void cb("INVALID_METADATA");
|
return void cb("INVALID_METADATA");
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.on('end', cb)
|
.on('close', cb)
|
||||||
.on('error', cb);
|
.on('error', cb);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user