Skip to content

Commit 37f7d9e

Browse files
author
Tim Etchells
committed
tweaks
1 parent 5e3e203 commit 37f7d9e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

dev/src/microclimate/connection/MCSocket.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export default class MCSocket implements vscode.Disposable {
219219
if (project == null) {
220220
return;
221221
}
222-
Log.d("projectSettingsChanged", payload);
222+
// Log.d("projectSettingsChanged", payload);
223223
return project.onSettingsChangedEvent(payload);
224224
}
225225

dev/src/microclimate/project/Project.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ export default class Project implements vscode.QuickPickItem {
238238
errMsg += " " + event.error;
239239
}
240240
vscode.window.showErrorMessage(errMsg);
241-
return;
241+
// We still continue with the update even in the case of error
242242
}
243243

244244
// Only one of contextroot, app port, or debug port should be set
@@ -360,7 +360,6 @@ export default class Project implements vscode.QuickPickItem {
360360
])
361361
.then(() => {
362362
this.connection.onChange(this);
363-
Promise.resolve();
364363
});
365364
}
366365

0 commit comments

Comments
 (0)