mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-11 01:15:49 +08:00
not showing lb diff if new lb position is not qualified
This commit is contained in:
parent
20eae342cd
commit
33570c6bf4
1 changed files with 2 additions and 2 deletions
|
@ -2022,7 +2022,7 @@ function showResult(difficultyFailed = false) {
|
|||
const glbMemory =
|
||||
dbSnapshot.lbMemory[config.mode + mode2].global;
|
||||
let dontShowGlobalDiff =
|
||||
glbMemory == null || glbMemory === -1 ? true : false;
|
||||
glbMemory == null || glbMemory === -1 || glb === -1 ? true : false;
|
||||
let globalLbDiff = null;
|
||||
if (glb === null) {
|
||||
globalLbString = "global: not found";
|
||||
|
@ -2077,7 +2077,7 @@ function showResult(difficultyFailed = false) {
|
|||
const dlbMemory =
|
||||
dbSnapshot.lbMemory[config.mode + mode2].daily;
|
||||
let dontShowDailyDiff =
|
||||
dlbMemory == null || dlbMemory === -1 ? true : false;
|
||||
dlbMemory == null || dlbMemory === -1 || dlb === -1 ? true : false;
|
||||
let dailyLbDiff = null;
|
||||
if (dlb === null) {
|
||||
dailyLbString = "daily: not found";
|
||||
|
|
Loading…
Reference in a new issue