diff options
author | Chocobozzz <me@florianbigard.com> | 2020-02-07 09:10:59 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-02-07 09:10:59 +0100 |
commit | 338eb9d33af690db716805fd2277bf68f473b58f (patch) | |
tree | 98b0979d3a9adf1c835dcfce6c1459e499f0a509 /client/src/app/videos | |
parent | a0e35412b92afa42dee54165afa51fa3953a1252 (diff) | |
parent | 26469f9ed85f5e7d67ccecaa820f33e37179b76a (diff) | |
download | PeerTube-338eb9d33af690db716805fd2277bf68f473b58f.tar.gz PeerTube-338eb9d33af690db716805fd2277bf68f473b58f.tar.zst PeerTube-338eb9d33af690db716805fd2277bf68f473b58f.zip |
Merge branch 'release/2.1.0' into develop
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 | } |