mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-03 04:19:06 +08:00
fixed a bug that would not allow new entries to be inserted to the lb
This commit is contained in:
parent
0889d7d3e1
commit
bcf8d9344b
1 changed files with 1 additions and 1 deletions
|
@ -951,7 +951,7 @@ class Leaderboard {
|
|||
mode: a.mode,
|
||||
mode2: parseInt(a.mode2),
|
||||
timestamp: a.timestamp,
|
||||
hidden: a.hidden,
|
||||
hidden: a.hidden === undefined ? false : a.hidden,
|
||||
});
|
||||
insertedAt = this.board.length - 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue