From ad3d199a15030f532824d67ebd803ddcfc263bb3 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Wed, 13 Jul 2022 21:47:18 +1200 Subject: [PATCH] Fix content_type not matching 1 --- html/src/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html/src/app.js b/html/src/app.js index 7527c13c..3f6edb77 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -18701,7 +18701,8 @@ speechSynthesis.getVoices(); } 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' ) { releases.push(release);