@xuda.io/drive_module 1.1.638 → 1.1.640
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.js +5 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1437,20 +1437,21 @@ exports.upload_drive_file = async function (req, job_id, headers, file_obj) {
|
|
|
1437
1437
|
|
|
1438
1438
|
let tmp_originalname = originalname + ` (${i})`;
|
|
1439
1439
|
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
doc.originalname = originalname;
|
|
1440
|
+
check_req.file_name = tmp_originalname;
|
|
1441
|
+
|
|
1443
1442
|
const re_check_res = await module.exports.check_drive_file(check_req);
|
|
1444
1443
|
if (re_check_res.code < 0) {
|
|
1445
1444
|
i++;
|
|
1446
1445
|
return await rename_file_name(i);
|
|
1447
1446
|
}
|
|
1448
|
-
return { code: 1, data:
|
|
1447
|
+
return { code: 1, data: tmp_originalname };
|
|
1449
1448
|
};
|
|
1450
1449
|
const rename_ret = await rename_file_name(1);
|
|
1451
1450
|
if (rename_ret.code < 0) {
|
|
1452
1451
|
return rename_ret;
|
|
1453
1452
|
}
|
|
1453
|
+
doc.originalname = rename_ret.data;
|
|
1454
|
+
originalname = rename_ret.data;
|
|
1454
1455
|
}
|
|
1455
1456
|
|
|
1456
1457
|
switch (drive_type) {
|