@xuda.io/account_module 1.2.1291 → 1.2.1292
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.
- package/index.mjs +8 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1594,12 +1594,18 @@ export const update_contact = async function (req) {
|
|
|
1594
1594
|
selector: {
|
|
1595
1595
|
docType: 'contact',
|
|
1596
1596
|
stat: 3,
|
|
1597
|
-
email,
|
|
1598
1597
|
},
|
|
1599
1598
|
limit: 1,
|
|
1600
1599
|
fields: ['_id'],
|
|
1601
1600
|
};
|
|
1602
|
-
|
|
1601
|
+
|
|
1602
|
+
if (email) {
|
|
1603
|
+
opt.selector.email = email;
|
|
1604
|
+
} else if (contact_uid) {
|
|
1605
|
+
opt.selector.contact_uid = contact_uid;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
contact_ret = await find_contact_query(account_profile_info.uid, opt);
|
|
1603
1609
|
|
|
1604
1610
|
if (contact_ret.rows.length) {
|
|
1605
1611
|
var doc = contact_ret.rows[0].value;
|