Skip to content

Commit

Permalink
fix the message output
Browse files Browse the repository at this point in the history
  • Loading branch information
LinuxSuRen committed Apr 4, 2023
1 parent e8d7532 commit 3e15558
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugins/vscode/yaml-readme/dist/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -43377,8 +43377,7 @@ function activate(context) {
kind: "suite",
data: task
}, function(err, response) {
console.log(err, response);
if (err !== void 0) {
if (err !== void 0 && err !== null) {
apiConsole.appendLine(err);
} else {
apiConsole.appendLine(response.message);
Expand Down

0 comments on commit 3e15558

Please sign in to comment.