Ignore m3u files when scanning

This commit is contained in:
Deluan 2020-07-03 21:06:33 -04:00
parent 1cc03fdd8c
commit 17830d63b4
4 changed files with 15 additions and 1 deletions

View file

@ -6,9 +6,14 @@ import (
"strings"
)
var excludeAudioType = []string{
"audio/x-mpegurl",
}
func IsAudioFile(filePath string) bool {
extension := filepath.Ext(filePath)
return strings.HasPrefix(mime.TypeByExtension(extension), "audio/")
mimeType := mime.TypeByExtension(extension)
return !StringInSlice(mimeType, excludeAudioType) && strings.HasPrefix(mimeType, "audio/")
}
func IsImageFile(filePath string) bool {