diff options
Diffstat (limited to 'client/src/app/videos')
-rw-r--r-- | client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts b/client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts index aa3a85995..aa87f9581 100644 --- a/client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts +++ b/client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts | |||
@@ -293,6 +293,8 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy | |||
293 | } | 293 | } |
294 | 294 | ||
295 | private isAudioFile (filename: string) { | 295 | private isAudioFile (filename: string) { |
296 | return filename.endsWith('.mp3') || filename.endsWith('.flac') || filename.endsWith('.ogg') | 296 | const extensions = [ '.mp3', '.flac', '.ogg', '.wma', '.wav' ] |
297 | |||
298 | return extensions.some(e => filename.endsWith(e)) | ||
297 | } | 299 | } |
298 | } | 300 | } |