We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2288b81 commit 7f25c61Copy full SHA for 7f25c61
src/common/challenge-helper.js
@@ -89,8 +89,8 @@ class ChallengeHelper {
89
promises.push(
90
(async () => {
91
const group = await helper.getGroupById(g);
92
- const status = _.toLower(_.get(group, "status"));
93
- if (!group || status !== "active") {
+ console.log("group", group);
+ if (!group) {
94
throw new errors.BadRequestError("The groups provided are invalid " + g);
95
}
96
})()
0 commit comments