fixed volume silent check

This commit is contained in:
2025-03-28 15:27:24 -04:00
parent 653842117f
commit e3d9fcec6f
+1 -1
View File
@@ -150,7 +150,7 @@ func (p *Player) SetVolume(desiredVolume UserVolume) error {
// Apply the volume settings
p.volume.Volume = float64(volume.ToPlayerVolume())
p.volume.Silent = volume < MinUserVol
p.volume.Silent = volume == MinUserVol
return nil
}