Skip to content

Commit 0f5c242

Browse files
Merge pull request #261 from topcoder-platform/Issue_260
ignore appeals response phase for design track
2 parents 659da47 + b8e692a commit 0f5c242

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)