@xuda.io/ai_module 1.1.5463 → 1.1.5465
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
|
@@ -3664,7 +3664,7 @@ const process_conversation = async function (uid, conversation_id, account_profi
|
|
|
3664
3664
|
//enable_thumbnail_avatar_generation
|
|
3665
3665
|
const { data: account_doc } = await db_module.get_couch_doc('xuda_accounts', account_profile_info.uid);
|
|
3666
3666
|
let thumbnail_type = 'conversation_category';
|
|
3667
|
-
if ((conversation_type === 'chat' && account_doc?.preferences?.enable_thumbnail_avatar_generation) || !category_info.category) {
|
|
3667
|
+
if ((conversation_type === 'chat' && (account_doc?.preferences?.enable_thumbnail_avatar_generation || typeof account_doc?.preferences?.enable_thumbnail_avatar_generation === 'undefined')) || !category_info.category) {
|
|
3668
3668
|
thumbnail_type = 'conversation_title';
|
|
3669
3669
|
}
|
|
3670
3670
|
|
|
@@ -5355,7 +5355,7 @@ const get_plugin_tool = async function (app_id, uid, plugin_name, method, prop_d
|
|
|
5355
5355
|
}
|
|
5356
5356
|
const _method = methods[method];
|
|
5357
5357
|
const userName = await get_user_name(uid);
|
|
5358
|
-
|
|
5358
|
+
|
|
5359
5359
|
const fields = await get_fields_data(_method.fields, prop_data);
|
|
5360
5360
|
const params = fields;
|
|
5361
5361
|
const env = { couch, app_id, uid, userName, agent_info };
|