mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-29 03:20:46 +08:00
fixed null name on ember
This commit is contained in:
parent
d58de70553
commit
e389b95a4c
1 changed files with 1 additions and 1 deletions
|
|
@ -2553,7 +2553,7 @@ exports.checkLeaderboards = functions.https.onRequest(
|
|||
|
||||
//send discord update
|
||||
let usr =
|
||||
request.discordId !== undefined ? request.discordId : request.name;
|
||||
request.discordId != undefined ? request.discordId : request.name;
|
||||
|
||||
if (
|
||||
global !== null &&
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue