Fix #668: Add sample rate, bit depth, channels to track info dialog

This commit is contained in:
Drew Weymouth
2025-08-08 07:50:43 -07:00
parent dbea096edf
commit 766cfdfe91
7 changed files with 31 additions and 1 deletions
@@ -573,6 +573,9 @@ func toTrack(ch *subsonic.Child) *mediaprovider.Track {
Comment: ch.Comment,
BPM: ch.BPM,
ReplayGain: rGain,
SampleRate: ch.SamplingRate,
BitDepth: ch.BitDepth,
Channels: ch.ChannelCount,
}
}