@xuda.io/account_module 1.2.1389 → 1.2.1390
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 +2 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -2078,9 +2078,9 @@ const set_account_profile_picture = async function (uid, contact_uid) {
|
|
|
2078
2078
|
let { code: account_code, data: account_obj } = await db_module.get_couch_doc('xuda_accounts', contact_uid);
|
|
2079
2079
|
let account_info = account_obj.account_info;
|
|
2080
2080
|
|
|
2081
|
-
account_info.profile_picture_obj = file_ret;
|
|
2081
|
+
account_info.profile_picture_obj = file_ret.data;
|
|
2082
2082
|
account_info.profile_picture = account_info.profile_picture_obj.file_url;
|
|
2083
|
-
account_info.profile_picture_source =
|
|
2083
|
+
account_info.profile_picture_source = file_ret.profile_picture_source;
|
|
2084
2084
|
const account_save_ret = await db_module.save_couch_doc('xuda_accounts', account_obj);
|
|
2085
2085
|
}
|
|
2086
2086
|
|