mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Don't read the whole smart playlist file in memory
This commit is contained in:
parent
4bc4daa68f
commit
18e1c169f9
1 changed files with 2 additions and 6 deletions
|
@ -93,13 +93,9 @@ func (s *playlists) newSyncedPlaylist(baseDir string, playlistFile string) (*mod
|
|||
}
|
||||
|
||||
func (s *playlists) parseNSP(ctx context.Context, pls *model.Playlist, file io.Reader) (*model.Playlist, error) {
|
||||
content, err := io.ReadAll(file)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
pls.Rules = &criteria.Criteria{}
|
||||
err = json.Unmarshal(content, pls.Rules)
|
||||
dec := json.NewDecoder(file)
|
||||
err := dec.Decode(pls.Rules)
|
||||
if err != nil {
|
||||
log.Error(ctx, "Error parsing SmartPlaylist", "playlist", pls.Name, err)
|
||||
return nil, err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue