Skip to content

Commit f2bd045

Browse files
committed
enforcing max progress step check even when race completed is true
1 parent a83d398 commit f2bd045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/controllers/socket-handlers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ const initialize = (io) => {
14271427
return;
14281428
}
14291429

1430-
if (delta > MAX_PROGRESS_STEP && !isCompleted) {
1430+
if (delta > MAX_PROGRESS_STEP) {
14311431
registerSuspicion('progress-spike', { prevPosition, position, delta });
14321432
return;
14331433
}

0 commit comments

Comments
 (0)