Skip to content

Commit b8e692a

Browse files
#260 - ignore appeals response phase for desigm track
1 parent 659da47 commit b8e692a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ function * checkGetAccess (authUser, submission) {
575575
const appealsResponseStatus = getPhaseStatus('Appeals Response', challengeDetails.body)
576576

577577
// Appeals Response is not closed yet
578-
if (appealsResponseStatus !== 'Closed') {
578+
if (appealsResponseStatus !== 'Closed' && appealsResponseStatus !== 'Invalid') {
579579
throw new errors.HttpStatusError(403, 'You cannot access other submissions before the end of Appeals Response phase')
580580
} else {
581581
const userSubmission = yield fetchFromES({

0 commit comments

Comments
 (0)