@xuda.io/drive_module 1.1.470 → 1.1.472
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 +1 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2210,8 +2210,7 @@ const get_folder_size = async function (dir, drive_type, app_id) {
|
|
|
2210
2210
|
selector: {
|
|
2211
2211
|
docType: `${drive_type}_drive`,
|
|
2212
2212
|
stat: 3,
|
|
2213
|
-
|
|
2214
|
-
file_path: dirPath,
|
|
2213
|
+
file_path: path.join("/", dirPath),
|
|
2215
2214
|
},
|
|
2216
2215
|
limit: 99999,
|
|
2217
2216
|
};
|
|
@@ -2280,7 +2279,6 @@ const get_folder_docs = async function (dir, drive_type, app_id) {
|
|
|
2280
2279
|
selector: {
|
|
2281
2280
|
docType: `${drive_type}_drive`,
|
|
2282
2281
|
stat: 3,
|
|
2283
|
-
|
|
2284
2282
|
file_path: path.join("/", dirPath),
|
|
2285
2283
|
},
|
|
2286
2284
|
limit: 99999,
|