We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9251310 commit 248a9f5Copy full SHA for 248a9f5
packages/server/src/updater.ts
@@ -20,7 +20,7 @@ export const getRecentRelease = (): Promise<string> => {
20
});
21
22
res.on("end", () => {
23
- let release = JSON.parse(body);
+ const release = JSON.parse(body);
24
resolve(release.name);
25
26
0 commit comments