mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Refactor file type functions
This commit is contained in:
parent
9ec349dce0
commit
8c1cd9c273
10 changed files with 75 additions and 98 deletions
|
@ -2,7 +2,6 @@ package model
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
@ -138,8 +137,3 @@ type PlaylistTrackRepository interface {
|
|||
DeleteAll() error
|
||||
Reorder(pos int, newPos int) error
|
||||
}
|
||||
|
||||
func IsValidPlaylist(filePath string) bool {
|
||||
extension := strings.ToLower(filepath.Ext(filePath))
|
||||
return extension == ".m3u" || extension == ".m3u8" || extension == ".nsp"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue