Skip to content

Commit 2ffccfc

Browse files
committed
Fix #21: this.extendedProcessDebugJSONRequest_ is not a function
1 parent 3000b18 commit 2ffccfc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

v8-debug.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ var overrides = {
9393
}
9494
},
9595
processDebugRequest: function WRAPPED_BY_NODE_INSPECTOR(request) {
96-
return this.extendedProcessDebugJSONRequest_(request)
96+
return (this.extendedProcessDebugJSONRequest_
97+
&& this.extendedProcessDebugJSONRequest_(request))
9798
|| this.processDebugJSONRequest(request);
9899
}
99100
};

0 commit comments

Comments
 (0)