@xuda.io/drive_module 1.1.813 → 1.1.815
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 +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1768,7 +1768,7 @@ exports.upload_drive_file = async function (req, job_id, headers, file_obj) {
|
|
|
1768
1768
|
}
|
|
1769
1769
|
};
|
|
1770
1770
|
exports.check_drive_file = async function (req, job_id, headers, file_obj) {
|
|
1771
|
-
const { drive_type, app_id, uid,
|
|
1771
|
+
const { drive_type, app_id, uid, file_path } = req;
|
|
1772
1772
|
|
|
1773
1773
|
var master_app_id;
|
|
1774
1774
|
|
|
@@ -1798,7 +1798,7 @@ exports.check_drive_file = async function (req, job_id, headers, file_obj) {
|
|
|
1798
1798
|
selector: {
|
|
1799
1799
|
docType: "workspace_drive",
|
|
1800
1800
|
originalname: path.basename(file_path),
|
|
1801
|
-
file_path:path.dirname(file_path)
|
|
1801
|
+
file_path: path.dirname(file_path),
|
|
1802
1802
|
stat: 3,
|
|
1803
1803
|
},
|
|
1804
1804
|
limit: 99,
|
|
@@ -1818,8 +1818,8 @@ exports.check_drive_file = async function (req, job_id, headers, file_obj) {
|
|
|
1818
1818
|
const user_drive_res = await db_module.find_couch_query("xuda_drive", {
|
|
1819
1819
|
selector: {
|
|
1820
1820
|
docType: "user_drive",
|
|
1821
|
-
originalname:
|
|
1822
|
-
file_path,
|
|
1821
|
+
originalname: path.basename(file_path),
|
|
1822
|
+
file_path: path.dirname(file_path),
|
|
1823
1823
|
uid,
|
|
1824
1824
|
stat: 3,
|
|
1825
1825
|
},
|