mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Fixed: Album API query by foreignId only returns requested album
Setting the new 'includeAllArtistAlbums' will give the existing behaviour of returning all albums for that artist
This commit is contained in:
@@ -55,7 +55,10 @@ class AlbumDetailsPageConnector extends Component {
|
||||
populate = () => {
|
||||
const foreignAlbumId = this.props.foreignAlbumId;
|
||||
this.setState({ hasMounted: true });
|
||||
this.props.fetchAlbums({ foreignAlbumId });
|
||||
this.props.fetchAlbums({
|
||||
foreignAlbumId,
|
||||
includeAllArtistAlbums: true
|
||||
});
|
||||
}
|
||||
|
||||
unpopulate = () => {
|
||||
|
||||
Reference in New Issue
Block a user