fix: more specific audio exclusions for android
Some checks failed
Check / check (push) Has been cancelled

This commit is contained in:
ThaUnknown 2025-08-07 20:56:52 +02:00
parent 2a4dcb0f24
commit 3e94d66b29
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "ui",
"version": "6.4.103",
"version": "6.4.104",
"license": "BUSL-1.1",
"private": true,
"packageManager": "pnpm@9.15.5",

View file

@ -26,8 +26,8 @@ if (!dev && !video.canPlayType('audio/mp4; codecs="ac-3"')) {
exclusions.push('AC3', 'AC-3')
}
if (!('audioTracks' in HTMLVideoElement.prototype)) {
exclusions.push('DUAL')
exclusions.push('MULTI')
exclusions.push('DUAL AUDIO', 'Dual Audio')
exclusions.push('MULTI AUDIO', 'Multi Audio')
}
video.remove()
const debug = Debug('ui:extensions')