Try to fix Mac video upload

pull/1567/head
Chocobozzz 2019-01-24 15:23:06 +01:00
parent 572b8e02e2
commit 307902e2b3
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 6 additions and 5 deletions

View File

@ -26,8 +26,7 @@ export class AccountsComponent implements OnInit, OnDestroy {
private notifier: Notifier,
private restExtractor: RestExtractor,
private redirectService: RedirectService,
private authService: AuthService,
private i18n: I18n
private authService: AuthService
) {}
ngOnInit () {

View File

@ -88,8 +88,8 @@ function isVideoFileExtnameValid (value: string) {
function isVideoFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[]) {
const videoFileTypesRegex = Object.keys(MIMETYPES.VIDEO.MIMETYPE_EXT)
.map(m => `(${m})`)
.join('|')
.map(m => `(${m})`)
.join('|')
return isFileValid(files, videoFileTypesRegex, 'videofile', null)
}

View File

@ -795,7 +795,9 @@ function buildVideoMimetypeExt () {
'video/quicktime': '.mov',
'video/x-msvideo': '.avi',
'video/x-flv': '.flv',
'video/x-matroska': '.mkv'
'video/x-matroska': '.mkv',
'application/octet-stream': '.mkv',
'video/avi': '.avi'
})
}