go fmt
This commit is contained in:
+3
-3
@@ -18,11 +18,11 @@ type Track struct {
|
||||
}
|
||||
|
||||
func (m *Track) RealArtist() string {
|
||||
if (m.Compilation) {
|
||||
if m.Compilation {
|
||||
return "Various Artists"
|
||||
}
|
||||
if (m.AlbumArtist != "") {
|
||||
if m.AlbumArtist != "" {
|
||||
return m.AlbumArtist
|
||||
}
|
||||
return m.Artist
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user