@xuda.io/account_module 1.2.1347 → 1.2.1348
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 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1367,6 +1367,7 @@ export const get_pending_contact_out = async function (uid, _id) {
|
|
|
1367
1367
|
if (account_info_ret.code < 0) {
|
|
1368
1368
|
continue; // throw new Error(`account ${contact_uid} not found`);
|
|
1369
1369
|
}
|
|
1370
|
+
doc.account_type = account_info_ret.data.account_type;
|
|
1370
1371
|
doc.avatar_source = account_info_ret.data.avatar_source;
|
|
1371
1372
|
doc.profile_avatar = account_info_ret.data.profile_avatar;
|
|
1372
1373
|
doc.name = `${account_info_ret.data.first_name} ${account_info_ret.data.last_name}`;
|