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