Treat .FLAC as playable audio

Fixes: https://github.com/feross/webtorrent-desktop/issues/1124

Note FLAC is not actually playable in Electron, by default. But this
will at least offer to open it in VLC or the user's preferred player.
This commit is contained in:
Feross Aboukhadijeh
2017-02-07 21:05:45 -08:00
parent 8d86cffabd
commit 00f2e5ccd6

View File

@@ -37,6 +37,7 @@ function isAudio (file) {
'.mp3',
'.ogg',
'.wav',
'.flac',
'.m4a'
].includes(getFileExtension(file))
}