From 1d2fa7aecadad430d1896ee3137ee3f29b802dae Mon Sep 17 00:00:00 2001 From: Natsumi Date: Wed, 13 Jul 2022 18:58:44 +1200 Subject: [PATCH] Fix content_type not matching --- html/src/app.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/html/src/app.js b/html/src/app.js index 2c325f0b..7527c13c 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -18634,7 +18634,9 @@ speechSynthesis.getVoices(); if (release.name === this.VRCXUpdateDialog.release) { for (var asset of release.assets) { if ( - asset.content_type === 'application/x-msdownload' && + (asset.content_type === 'application/x-msdownload' || + asset.content_type === + 'application/x-msdos-program') && asset.state === 'uploaded' ) { var downloadUrl = asset.browser_download_url;