Merge branch 'master' into e2e-env-fix

This commit is contained in:
Wyatt Johnson
2017-01-27 08:04:34 -07:00
committed by GitHub
+1 -1
View File
@@ -20,7 +20,7 @@ const createAction = ({user = {}}, {item_id, item_type, action_type, metadata =
metadata
}).then((result) =>
item_type === 'USERS' && action_type === 'FLAG' ?
UsersService.setStatus(user.id, 'PENDING').then(() => result)
UsersService.setStatus(item_id, 'PENDING').then(() => result)
: result);
};