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 899a84c commit 14a8883Copy full SHA for 14a8883
frontend/src/convert/convert.js
@@ -22,7 +22,7 @@ const _isMP3 = (buf) => {
22
buf[1] === 68 &&
23
buf[2] === 51) || (
24
buf[0] === 255 &&
25
- (buf[1] === 251 || buf[1] === 250 || buf[1] === 243 || buf[1] === 242)
+ (buf[1] >= 224)
26
)
27
}
28
0 commit comments