Do not rethrow exception if user file failed to write

This commit is contained in:
Pavel Djundik 2018-03-03 18:07:31 +02:00
parent 6b5f6e3e79
commit 4b7a53c5e1

View file

@ -153,8 +153,6 @@ ClientManager.prototype.updateUser = function(name, opts, callback) {
if (callback) {
callback(e);
}
throw e;
}
};