From 6cab3a1e94a619aa50abf3cd0d44cc692518cdfe Mon Sep 17 00:00:00 2001 From: Natsumi Date: Tue, 10 Aug 2021 06:10:37 +1200 Subject: [PATCH] Updater bug --- html/src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/src/app.js b/html/src/app.js index 40ef8c4d..f57aa17d 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -13353,7 +13353,7 @@ speechSynthesis.getVoices(); var releases = []; for (var release of json) { for (var asset of release.assets) { - if ((asset.content_type === 'application/octet-stream') && (asset.state === 'uploaded')) { + if ((asset.content_type === 'application/x-msdownload') && (asset.state === 'uploaded')) { releases.push(release); } }