@xuda.io/drive_module 1.1.1451 → 1.1.1453
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.mjs +1 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -279,9 +279,8 @@ export const get_drive_files = async (req) => {
|
|
|
279
279
|
};
|
|
280
280
|
};
|
|
281
281
|
const get_user_files = async () => {
|
|
282
|
-
debugger;
|
|
283
282
|
opt.selector.docType = 'user_drive';
|
|
284
|
-
opt.selector.uid = uid;
|
|
283
|
+
// opt.selector.uid = uid;
|
|
285
284
|
const ret = await find_contact_query(uid, opt);
|
|
286
285
|
const file_doc = await get_user_drive_file(uid, path.basename(file_path) || '/');
|
|
287
286
|
|