@xuda.io/account_module 1.2.1682 → 1.2.1683
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 +3 -3
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1290,7 +1290,7 @@ export const get_contact_info = async function (uid, contact_doc, _id) {
|
|
|
1290
1290
|
endkey: [doc._id, 'zzzzzz'],
|
|
1291
1291
|
});
|
|
1292
1292
|
|
|
1293
|
-
return counts_ret?.rows?.[0]?.value ||
|
|
1293
|
+
return counts_ret?.rows?.[0]?.value || 0;
|
|
1294
1294
|
};
|
|
1295
1295
|
const contact_chat_conversation_count_ret = await chat_conversation_count();
|
|
1296
1296
|
doc.notifications = 0;
|
|
@@ -1360,8 +1360,8 @@ export const get_contact_info = async function (uid, contact_doc, _id) {
|
|
|
1360
1360
|
doc.email = doc.email;
|
|
1361
1361
|
}
|
|
1362
1362
|
|
|
1363
|
-
doc.interactions = contact_chat_conversation_count_ret
|
|
1364
|
-
doc.notifications = contact_chat_conversation_count_ret
|
|
1363
|
+
doc.interactions = contact_chat_conversation_count_ret;
|
|
1364
|
+
doc.notifications = contact_chat_conversation_count_ret;
|
|
1365
1365
|
doc.chats = doc.interactions;
|
|
1366
1366
|
|
|
1367
1367
|
// const chats_ret = await ai_module.get_ai_chats({ uid, reference_id: doc._id });
|