Skip to content

Commit 3ee92fe

Browse files
authored
remove extraneous async/await
1 parent 12b0124 commit 3ee92fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/remote.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -910,9 +910,9 @@ export class Remote {
910910
.then((content) => {
911911
return JSON.parse(content);
912912
})
913-
.then(async (parsed) => {
913+
.then((parsed) => {
914914
try {
915-
await updateStatus(parsed);
915+
updateStatus(parsed);
916916
} catch (ex) {
917917
// Ignore
918918
}

0 commit comments

Comments
 (0)