@xuda.io/drive_module 1.1.1024 → 1.1.1026
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 +6 -6
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -355,14 +355,14 @@ exports.get_drive_files = async function (req) {
|
|
|
355
355
|
}
|
|
356
356
|
|
|
357
357
|
const internal_path = val.path;
|
|
358
|
-
|
|
359
|
-
|
|
358
|
+
const directory_path = get_studio_path(
|
|
359
|
+
val.path,
|
|
360
360
|
app_id_master,
|
|
361
|
-
|
|
362
|
-
get_studio_path(val.path, app_id_master, val.relativePath),
|
|
363
|
-
val.name
|
|
364
|
-
)
|
|
361
|
+
val.relativePath
|
|
365
362
|
);
|
|
363
|
+
const file_path = path.join(directory_path, val.name);
|
|
364
|
+
|
|
365
|
+
let ret = await db_module.get_app_couch_doc(app_id_master, file_path);
|
|
366
366
|
|
|
367
367
|
if (ret.code > -1) {
|
|
368
368
|
if (val.type === "file") {
|