1
0
Fork 0

Try to fix Mac video upload

This commit is contained in:
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 notifier: Notifier,
private restExtractor: RestExtractor, private restExtractor: RestExtractor,
private redirectService: RedirectService, private redirectService: RedirectService,
private authService: AuthService, private authService: AuthService
private i18n: I18n
) {} ) {}
ngOnInit () { ngOnInit () {

View file

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