mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-03-28 00:05:15 +00: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