bulltrackers-module 1.0.599 → 1.0.600
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -541,7 +541,7 @@ const lookupCidByEmail = async (firestore, userEmail) => {
|
|
|
541
541
|
const verificationRef = userDoc.ref.collection('verification').doc('data');
|
|
542
542
|
const verificationDoc = await verificationRef.get();
|
|
543
543
|
|
|
544
|
-
if (verificationDoc.exists
|
|
544
|
+
if (verificationDoc.exists) {
|
|
545
545
|
const verificationData = verificationDoc.data();
|
|
546
546
|
const emails = Array.isArray(verificationData.email)
|
|
547
547
|
? verificationData.email
|