@xuda.io/account_module 1.2.428 → 1.2.429
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 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -168,7 +168,7 @@ export const update_account_info = async function (req, job_id, headers) {
|
|
|
168
168
|
// temp remove later on
|
|
169
169
|
|
|
170
170
|
let drive_req = { app_id: account_obj.account_project_id, uid, path: '/' };
|
|
171
|
-
await drive_module.create_drive_folder_workspace({ ...drive_req, ...{ folder_name: 'Chat Images'
|
|
171
|
+
await drive_module.create_drive_folder_workspace({ ...drive_req, ...{ folder_name: 'Chat Images' } }, job_id, headers);
|
|
172
172
|
await drive_module.create_drive_folder_studio({ ...drive_req, ...{ folder_name: 'Progs Thumbnails', is_system: true } }, job_id, headers);
|
|
173
173
|
await drive_module.create_drive_folder_studio({ ...drive_req, ...{ folder_name: 'Screenshots', is_system: true } }, job_id, headers);
|
|
174
174
|
await drive_module.create_drive_folder_user({ ...drive_req, ...{ folder_name: 'Profile Images', is_system: true } }, job_id, headers);
|