@xuda.io/drive_module 1.1.821 → 1.1.823
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 +0 -7
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2589,14 +2589,7 @@ exports.update_drive_file_tags = async function (req, job_id, headers) {
|
|
|
2589
2589
|
|
|
2590
2590
|
let doc = await get_drive_doc(drive_type, app_id, uid, file_path, headers);
|
|
2591
2591
|
|
|
2592
|
-
var target_file = file_name;
|
|
2593
|
-
// const master_id = await _common.get_project_app_id(app_id, true);
|
|
2594
|
-
|
|
2595
|
-
let doc_ret;
|
|
2596
|
-
|
|
2597
|
-
doc = doc_ret.data;
|
|
2598
2592
|
doc.date_modified = Date.now();
|
|
2599
|
-
|
|
2600
2593
|
doc.tags = tags;
|
|
2601
2594
|
|
|
2602
2595
|
return await save_drive_doc(drive_type, app_id, doc);
|