@xuda.io/account_module 1.2.1259 → 1.2.1260
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
|
@@ -2921,6 +2921,5 @@ export const update_account_profile = async function (req, job_id, headers) {
|
|
|
2921
2921
|
|
|
2922
2922
|
const get_contact = async function (uid, contact_id) {
|
|
2923
2923
|
const account_profile_info = await get_active_account_profile_info(uid);
|
|
2924
|
-
|
|
2925
|
-
const contact_ret = await db_module.get_couch_doc('xuda_contacts', contact_id);
|
|
2924
|
+
const contact_ret = await db_module.get_app_couch_doc(account_profile_info.app_id, contact_id);
|
|
2926
2925
|
};
|