mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Ignore m3u files when scanning
This commit is contained in:
parent
1cc03fdd8c
commit
17830d63b4
4 changed files with 15 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue