Skip to content

Commit

Permalink
Merge pull request jxhczhl#3 from zxerqw/main
Browse files Browse the repository at this point in the history
Fix undefined variable error.
  • Loading branch information
jxhczhl authored Apr 2, 2022
2 parents 029edae + f5b60ed commit 46af77b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resouces/JsEnv.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Hlclient.prototype.handlerRequest = function (requestJson) {
this.sendResult('','need request param {action}');
return
}
action=result["action"]
var action=result["action"]
var theHandler = this.handlers[action];
if (!theHandler){
this.sendResult(action,'action not found');
Expand Down

0 comments on commit 46af77b

Please sign in to comment.