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