Skip to content

Commit aabe3f7

Browse files
authored
Merge pull request #4680 from topcoder-platform/issue-4650
Fix Issue#4650 : Pass old groups ids to filter
2 parents 9379004 + 8588b8f commit aabe3f7

File tree

1 file changed

+1
-1
lines changed
  • src/shared/actions/tc-communities

1 file changed

+1
-1
lines changed

src/shared/actions/tc-communities/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function getListInit(uuid) {
3838
* @return {Promise}
3939
*/
4040
function getListDone(uuid, auth) {
41-
const groups = _.get(auth, 'profile.groups', []).map(g => g.id);
41+
const groups = _.get(auth, 'profile.groups', []).map(g => g.oldId);
4242
return getCommunitiesService(auth.tokenV3)
4343
.getList(groups).then(list => ({ list, uuid }));
4444
}

0 commit comments

Comments
 (0)