@xuda.io/drive_module 1.1.637 → 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.
Files changed (2) hide show
  1. package/index.js +7 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1430,14 +1430,15 @@ exports.upload_drive_file = async function (req, job_id, headers, file_obj) {
1430
1430
  );
1431
1431
 
1432
1432
  if (check_existing_file_ret.code < 0) {
1433
- let tmp_originalname = originalname;
1434
1433
  const rename_file_name = async function (i) {
1435
1434
  if (i > 1000) {
1436
1435
  return { code: -1, data: "too many retries renaming existing file" };
1437
1436
  }
1438
- originalname += ` (${i})`;
1439
- check_req.file_name = originalname;
1440
- doc.originalname = originalname;
1437
+
1438
+ let tmp_originalname = originalname + ` (${i})`;
1439
+
1440
+ check_req.file_name = tmp_originalname;
1441
+
1441
1442
  const re_check_res = await module.exports.check_drive_file(check_req);
1442
1443
  if (re_check_res.code < 0) {
1443
1444
  i++;
@@ -1449,6 +1450,8 @@ exports.upload_drive_file = async function (req, job_id, headers, file_obj) {
1449
1450
  if (rename_ret.code < 0) {
1450
1451
  return rename_ret;
1451
1452
  }
1453
+ doc.originalname = rename_ret.data;
1454
+ originalname = rename_ret.data;
1452
1455
  }
1453
1456
 
1454
1457
  switch (drive_type) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/drive_module",
3
- "version": "1.1.637",
3
+ "version": "1.1.639",
4
4
  "description": "Xuda Drive Server Module",
5
5
  "main": "index.js",
6
6
  "dependencies": {