@xuda.io/account_module 1.2.1690 → 1.2.1692
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 +4 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1356,8 +1356,9 @@ export const get_contact_info = async function (uid, contact_doc, _id) {
|
|
|
1356
1356
|
doc.connection_stat = 0;
|
|
1357
1357
|
}
|
|
1358
1358
|
}
|
|
1359
|
+
|
|
1359
1360
|
doc.avatar_source = account_info_ret.data.avatar_source;
|
|
1360
|
-
doc.icon_pattern = await get_contact_pattern(doc);
|
|
1361
|
+
// doc.icon_pattern = await get_contact_pattern(doc);
|
|
1361
1362
|
doc.username = account_info_ret.data.username;
|
|
1362
1363
|
doc.business_name = account_info_ret.data.business_name;
|
|
1363
1364
|
doc.address = account_info_ret.data.address;
|
|
@@ -1373,6 +1374,8 @@ export const get_contact_info = async function (uid, contact_doc, _id) {
|
|
|
1373
1374
|
doc.email = doc.email;
|
|
1374
1375
|
}
|
|
1375
1376
|
|
|
1377
|
+
doc.icon_pattern = await get_contact_pattern(doc);
|
|
1378
|
+
|
|
1376
1379
|
const contact_chat_conversation_count_ret = await chat_conversation_count();
|
|
1377
1380
|
const contact_chat_conversation_read_ret = await chat_conversation_read();
|
|
1378
1381
|
|