@xuda.io/drive_module 1.1.638 → 1.1.639
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 +4 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1437,9 +1437,8 @@ 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++;
|
|
@@ -1451,6 +1450,8 @@ exports.upload_drive_file = async function (req, job_id, headers, file_obj) {
|
|
|
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) {
|