Skip to content

Commit 3e15558

Browse files
committed
fix the message output
1 parent e8d7532 commit 3e15558

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

plugins/vscode/yaml-readme/dist/extension.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -43377,8 +43377,7 @@ function activate(context) {
4337743377
kind: "suite",
4337843378
data: task
4337943379
}, function(err, response) {
43380-
console.log(err, response);
43381-
if (err !== void 0) {
43380+
if (err !== void 0 && err !== null) {
4338243381
apiConsole.appendLine(err);
4338343382
} else {
4338443383
apiConsole.appendLine(response.message);

0 commit comments

Comments
 (0)