@xuda.io/account_module 1.2.1279 → 1.2.1281
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
|
@@ -2917,7 +2917,7 @@ export const save_contact = async function (uid, contact_doc) {
|
|
|
2917
2917
|
};
|
|
2918
2918
|
|
|
2919
2919
|
export const find_contact_query = async function (uid, opt) {
|
|
2920
|
-
const
|
|
2921
|
-
const ret = await db_module.find_app_couch_query(
|
|
2920
|
+
const app_id = await get_account_default_project_id(uid);
|
|
2921
|
+
const ret = await db_module.find_app_couch_query(app_id, opt);
|
|
2922
2922
|
return ret;
|
|
2923
2923
|
};
|