mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
Fixed: show disambiguation in interactive import modal (#576)
This commit is contained in:
@@ -185,7 +185,10 @@ class InteractiveImportRow extends Component {
|
||||
} = this.state;
|
||||
|
||||
const artistName = artist ? artist.artistName : '';
|
||||
const albumTitle = album ? album.title : '';
|
||||
let albumTitle = '';
|
||||
if (album) {
|
||||
albumTitle = album.disambiguation ? `${album.title} (${album.disambiguation})` : album.title;
|
||||
}
|
||||
const trackNumbers = tracks.map((track) => `${track.mediumNumber}x${track.trackNumber}`)
|
||||
.join(', ');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user