mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-29 02:07:55 +08:00
missing await
This commit is contained in:
parent
d05f2cf2c4
commit
b6363fa689
1 changed files with 1 additions and 1 deletions
|
|
@ -1435,7 +1435,7 @@ exports.generatePairingCode = functions
|
|||
.collection("users")
|
||||
.doc(request.uid)
|
||||
.get()
|
||||
.then((userDoc) => {
|
||||
.then(async (userDoc) => {
|
||||
userDocData = userDoc.data();
|
||||
if (userDocData.discordPairingCode !== undefined) {
|
||||
console.log(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue