feat(subsonic): support OS clearing play queue (#3399)

This commit is contained in:
Deluan Quintão 2024-10-16 10:59:22 -04:00 committed by GitHub
parent 00c6a0ed1f
commit 8b5af67647
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 7 deletions

View file

@ -42,6 +42,9 @@ func (r *playQueueRepository) Store(q *model.PlayQueue) error {
log.Error(r.ctx, "Error deleting previous playqueue", "user", u.UserName, err)
return err
}
if len(q.Items) == 0 {
return nil
}
pq := r.fromModel(q)
if pq.ID == "" {
pq.CreatedAt = time.Now()