Skip to content

Commit 1821ae7

Browse files
Merge pull request #5438 from fikzzzy/split-groupids-request
#5308 Split GroupIDs Request By Several Chunks
2 parents 25d33a5 + 7fb528a commit 1821ae7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shared/containers/Profile.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ProfileContainer extends React.Component {
2020
meta,
2121
} = this.props;
2222

23-
loadProfile(handleParam, _.join(_.get(meta, 'groupIds', [])));
23+
loadProfile(handleParam, _.get(meta, 'groupIds', []));
2424
}
2525

2626
componentWillReceiveProps(nextProps) {
@@ -32,7 +32,7 @@ class ProfileContainer extends React.Component {
3232
} = nextProps;
3333

3434
if (handleParam !== profileForHandle) {
35-
loadProfile(handleParam, _.join(_.get(meta, 'groupIds', [])));
35+
loadProfile(handleParam, _.get(meta, 'groupIds', []));
3636
}
3737
}
3838

0 commit comments

Comments
 (0)