mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07: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:
parent
11c0f1dad2
commit
7b288bfcd3
2 changed files with 16 additions and 3 deletions
|
@ -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 = () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue