Fix reference to status enum in native impl

This commit is contained in:
murgatroid99 2020-02-20 14:10:13 -08:00
parent b90dc81b73
commit 38bab42f30
1 changed files with 1 additions and 1 deletions

View File

@ -845,7 +845,7 @@ Server.prototype.forceShutdown = function() {
function getUnimplementedStatusResponse(methodName) {
return {
code: Status.UNIMPLEMENTED,
code: constants.status.UNIMPLEMENTED,
details: 'The server does not implement the method' + methodName
}
}