Fix logging smart playlist's song count

This commit is contained in:
Deluan
2021-11-20 12:29:09 -05:00
parent 3e282df639
commit cbeaadf8e2
4 changed files with 18 additions and 15 deletions
+1 -3
View File
@@ -30,9 +30,7 @@ func (r *playlistRepository) Tracks(playlistId string) model.PlaylistTrackReposi
if err != nil {
return nil
}
if pls.IsSmartPlaylist() {
r.refreshSmartPlaylist(pls)
}
r.refreshSmartPlaylist(pls)
p.playlist = pls
return p
}