@xuda.io/drive_module 1.1.1320 → 1.1.1321
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 +3 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1074,7 +1074,9 @@ export const upload_drive_file = async (req, job_id, headers, file_obj) => {
|
|
|
1074
1074
|
|
|
1075
1075
|
let tags_arr = [];
|
|
1076
1076
|
try {
|
|
1077
|
-
if (tags)
|
|
1077
|
+
if (tags) {
|
|
1078
|
+
tags_arr = tags.split(',');
|
|
1079
|
+
}
|
|
1078
1080
|
} catch (error) {}
|
|
1079
1081
|
const ts = Date.now();
|
|
1080
1082
|
let doc = {
|