Skip to content

Commit 8588b8f

Browse files
Pass old groups ids to filter
1 parent 1a1aa8d commit 8588b8f

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)