@xuda.io/drive_module 1.1.1287 → 1.1.1288
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
|
@@ -701,7 +701,7 @@ export const create_drive_folder = async (req, job_id, headers) => {
|
|
|
701
701
|
// }
|
|
702
702
|
|
|
703
703
|
target_dir = path.join(file_path, folder_id);
|
|
704
|
-
const fs_target_dir = path.join(_conf[`studio_drive_path`],
|
|
704
|
+
const fs_target_dir = path.join(_conf[`studio_drive_path`], app_id_master, target_dir);
|
|
705
705
|
folder_exist = await file_exists(fs_target_dir);
|
|
706
706
|
if (folder_exist) {
|
|
707
707
|
throw new Error('folder exist');
|