@xuda.io/drive_module 1.1.787 → 1.1.789
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 -8
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -502,14 +502,7 @@ exports.get_drive_file_info = async function (req) {
|
|
|
502
502
|
const { type, drive_type, app_id, file_name } = req;
|
|
503
503
|
var { file_path } = req;
|
|
504
504
|
|
|
505
|
-
|
|
506
|
-
uid,
|
|
507
|
-
file_path,
|
|
508
|
-
headers)
|
|
509
|
-
|
|
510
|
-
let doc_ret,
|
|
511
|
-
doc_id,
|
|
512
|
-
|
|
505
|
+
let doc = await get_drive_doc(drive_type, app_id, uid, file_path, headers);
|
|
513
506
|
|
|
514
507
|
const app_id_master = await _common.get_project_app_id(app_id, true);
|
|
515
508
|
|