@xuda.io/account_module 1.2.412 → 1.2.414

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.
Files changed (2) hide show
  1. package/index.mjs +2 -2
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -54,10 +54,9 @@ export const update_account_info = async function (req, job_id, headers) {
54
54
  await marketplace_module.marketplace_save_user({ uid });
55
55
 
56
56
  _.forEach(data, function (val, key) {
57
- account_info_changes_arr.push(key);
58
57
  if (account_obj.account_info[key] !== val) {
59
58
  change += ' from ' + account_obj.account_info[key] + ' to ' + val;
60
-
59
+ account_info_changes_arr.push(key);
61
60
  account_obj.account_info[key] = val;
62
61
 
63
62
  if (key === 'profile_picture') {
@@ -131,6 +130,7 @@ export const update_account_info = async function (req, job_id, headers) {
131
130
  await drive_module.create_drive_folder_user({ ...drive_req, ...{ folder_name: 'Chat Attachments', is_system: true } }, job_id, headers);
132
131
  }
133
132
  }
133
+ debugger;
134
134
  const ai_module = await import(`${module_path}/ai_module/index.mjs`);
135
135
  if (account_obj.account_info?.profile_picture) {
136
136
  if (!account_obj.account_info?.profile_avatar) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/account_module",
3
- "version": "1.2.412",
3
+ "version": "1.2.414",
4
4
  "description": "Xuda Account Server Module",
5
5
  "main": "index.mjs",
6
6
  "dependencies": {