Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit b958513

Browse files
authored
fix(command_result): return entire result in toJSON
Fixes NODE-1942
1 parent 8489265 commit b958513

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/connection/command_result.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ var CommandResult = function(result, connection, message) {
1919
* @return {object}
2020
*/
2121
CommandResult.prototype.toJSON = function() {
22-
return this.result;
22+
let result = Object.assign({}, this, this.result);
23+
delete result.message;
24+
return result;
2325
};
2426

2527
/**

0 commit comments

Comments
 (0)