@xuda.io/drive_module 1.1.1255 → 1.1.1257
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 +2 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1243,7 +1243,7 @@ export const check_drive_file = async (req, job_id, headers, file_obj) => {
|
|
|
1243
1243
|
if (workspace_drive_res.docs.length) {
|
|
1244
1244
|
return {
|
|
1245
1245
|
code: -764,
|
|
1246
|
-
data:
|
|
1246
|
+
data: `${type} exist`,
|
|
1247
1247
|
duplicates: workspace_drive_res.docs,
|
|
1248
1248
|
};
|
|
1249
1249
|
}
|
|
@@ -1259,7 +1259,7 @@ export const check_drive_file = async (req, job_id, headers, file_obj) => {
|
|
|
1259
1259
|
if (user_drive_res.docs.length) {
|
|
1260
1260
|
return {
|
|
1261
1261
|
code: -764,
|
|
1262
|
-
data:
|
|
1262
|
+
data: `${type} exist`,
|
|
1263
1263
|
duplicates: user_drive_res.docs,
|
|
1264
1264
|
};
|
|
1265
1265
|
}
|