@xuda.io/drive_module 1.1.1127 → 1.1.1128

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.
Files changed (2) hide show
  1. package/index.js +15 -15
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -122,23 +122,23 @@ exports.get_drive_files = async function (req) {
122
122
  .filter((e) => e)
123
123
  .join(' ');
124
124
 
125
-
126
- if (new_search) {
127
-
128
- opt.selector = { ...opt.selector, ...{
129
- ocr: {
130
- $regex: `(?i)${new_search}`,
125
+ if (new_search) {
126
+ opt.selector = {
127
+ ...opt.selector,
128
+ ...[
129
+ {
130
+ ocr: {
131
+ $regex: `(?i)${new_search}`,
132
+ },
131
133
  },
132
- },
133
- {
134
- originalname: {
135
- $regex: `(?i)${new_search}`,
134
+ {
135
+ originalname: {
136
+ $regex: `(?i)${new_search}`,
137
+ },
136
138
  },
137
- }, };
138
-
139
- }
140
-
141
-
139
+ ],
140
+ };
141
+ }
142
142
 
143
143
  if (mix_conditions) {
144
144
  if (new_search) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/drive_module",
3
- "version": "1.1.1127",
3
+ "version": "1.1.1128",
4
4
  "description": "Xuda Drive Server Module",
5
5
  "main": "index.js",
6
6
  "dependencies": {