mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 21:53:13 +08:00
fixed an issue where the request would be too large on long tests
This commit is contained in:
parent
9605957aef
commit
726f834a60
1 changed files with 5 additions and 1 deletions
|
@ -1774,7 +1774,11 @@ function showResult(difficultyFailed = false) {
|
|||
err: errorsNoZero,
|
||||
};
|
||||
|
||||
if (testtime > 122) chartData = "toolong";
|
||||
if (testtime > 122) {
|
||||
chartData = "toolong";
|
||||
keypressStats.spacing.array = "toolong";
|
||||
keypressStats.duration.array = "toolong";
|
||||
}
|
||||
|
||||
let completedEvent = {
|
||||
wpm: stats.wpm,
|
||||
|
|
Loading…
Reference in a new issue