8000 Add package scripts and cli library, enable integration testing by jaggederest · Pull Request #536 · coder/vscode-coder · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove extraneous async/await
  • Loading branch information
jaggederest authored Jun 20, 2025
commit 3ee92fe2ec07d0b47e724f39acf22c227864cb2d
4 changes: 2 additions & 2 deletions src/remote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -910,9 +910,9 @@ export class Remote {
.then((content) => {
return JSON.parse(content);
})
.then(async (parsed) => {
.then((parsed) => {
try {
await updateStatus(parsed);
updateStatus(parsed);
} catch (ex) {
// Ignore
}
Expand Down
0