Add Comment column to tracklist

This commit is contained in:
Drew Weymouth
2023-12-16 15:54:03 -08:00
parent cfe667c9dd
commit 53dc9277ec
5 changed files with 21 additions and 9 deletions
+1
View File
@@ -101,6 +101,7 @@ type Track struct {
PlayCount int
FilePath string
BitRate int
Comment string
}
type Playlist struct {
@@ -360,6 +360,7 @@ func toTrack(ch *subsonic.Child) *mediaprovider.Track {
FilePath: ch.Path,
Size: ch.Size,
BitRate: ch.BitRate,
Comment: ch.Comment,
}
}