@xuda.io/account_module 1.2.1767 → 1.2.1768
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 +1 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1139,7 +1139,6 @@ const get_contact_background = function (doc) {
|
|
|
1139
1139
|
|
|
1140
1140
|
const get_contact_pattern = async function (doc) {
|
|
1141
1141
|
let ret = `default-pattern.png`;
|
|
1142
|
-
debugger;
|
|
1143
1142
|
|
|
1144
1143
|
if (doc?.shared_from_uid) {
|
|
1145
1144
|
const shared_from_uid_ret = await get_account_name({ uid_query: doc.shared_from_uid });
|
|
@@ -1388,7 +1387,7 @@ export const get_contact_info = async function (uid, contact_doc, _id) {
|
|
|
1388
1387
|
} else {
|
|
1389
1388
|
doc.email = doc.email;
|
|
1390
1389
|
}
|
|
1391
|
-
|
|
1390
|
+
|
|
1392
1391
|
doc.is_real_person = doc?.account_type_info?.is_real_person && doc?.person_info?.person_full_name !== 'Not available';
|
|
1393
1392
|
doc.icon_pattern = await get_contact_pattern(doc);
|
|
1394
1393
|
|