@xuda.io/drive_module 1.1.663 → 1.1.664
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 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1908,7 +1908,6 @@ exports.search_drive_files = async function (req) {
|
|
|
1908
1908
|
var search_results = [];
|
|
1909
1909
|
|
|
1910
1910
|
let selector = {
|
|
1911
|
-
type: "file",
|
|
1912
1911
|
docType: `${drive_type}_drive`,
|
|
1913
1912
|
stat: 3,
|
|
1914
1913
|
$and: [],
|
|
@@ -1961,7 +1960,7 @@ exports.search_drive_files = async function (req) {
|
|
|
1961
1960
|
|
|
1962
1961
|
var opt = {
|
|
1963
1962
|
selector,
|
|
1964
|
-
limit:
|
|
1963
|
+
limit: 100,
|
|
1965
1964
|
fields: ["originalname", "date_created", "server_file_name", "is_folder"],
|
|
1966
1965
|
};
|
|
1967
1966
|
|