Correctly fix octet stream fallback for video ext

pull/2482/head
Chocobozzz 2020-02-07 09:02:18 +01:00
parent 99d362de0c
commit 26469f9ed8
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 2 additions and 0 deletions

View File

@ -795,6 +795,8 @@ function buildVideoMimetypeExt () {
'video/x-matroska': '.mkv',
'video/avi': '.avi',
'video/x-m4v': '.m4v',
// Could be anything
'application/octet-stream': null,
'video/m4v': '.m4v'
})
}