diff --git a/src/cds/src/main/kotlin/org/icpclive/cds/adapters/EmulationAdapter.kt b/src/cds/src/main/kotlin/org/icpclive/cds/adapters/EmulationAdapter.kt index 4a3e884fb..74427a270 100644 --- a/src/cds/src/main/kotlin/org/icpclive/cds/adapters/EmulationAdapter.kt +++ b/src/cds/src/main/kotlin/org/icpclive/cds/adapters/EmulationAdapter.kt @@ -58,6 +58,6 @@ internal fun Flow.toEmulationFlow(startTime: Instant, emulationSp add((run.time + timeShift.milliseconds) to RunUpdate(run)) } addAll(analyticsMessages.map { it.relativeTime to AnalyticsUpdate(it) }) - }.sortedBy { it.first }.also { println(it.map { it.first }) }.forEach { emit(it) } + }.sortedBy { it.first }.forEach { emit(it) } }.map { (startTime + it.first / emulationSpeed) to it.second } .toTimedFlow { logger.info("Processed events upto ${(it - startTime) * emulationSpeed}") } diff --git a/src/frontend/overlay/src/components/atoms/ContestLabels.jsx b/src/frontend/overlay/src/components/atoms/ContestLabels.jsx index 8930ee6c3..ec9e85dc1 100644 --- a/src/frontend/overlay/src/components/atoms/ContestLabels.jsx +++ b/src/frontend/overlay/src/components/atoms/ContestLabels.jsx @@ -106,7 +106,7 @@ export const RunStatusLabel = ({ runInfo, className }) => { return <> {runInfo.result.type === "ICPC" && } {runInfo.result.type === "IOI" && } - {runInfo.result.type === "IN_PROGRESS" && } + {runInfo.result.type === "IN_PROGRESS" && } ; };