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 19b052b commit 4657725Copy full SHA for 4657725
src/updater.js
@@ -36,7 +36,7 @@ const checkForUpdates = async () => {
36
}
37
38
if (!isMainThread) {
39
- const response = fetch(`https://api.github.com/repos/${repository}/releases/latest`).then(async response => {
+ fetch(`https://api.github.com/repos/${repository}/releases/latest`).then(async response => {
40
if (response && response.ok) {
41
const json = await response.json()
42
const dir = join(getDirectory(), 'updates')
0 commit comments