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