@xuda.io/drive_module 1.1.1385 → 1.1.1386
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 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1804,6 +1804,7 @@ const get_drive_doc = async (type, drive_type, app_id, uid, file_path, headers)
|
|
|
1804
1804
|
break;
|
|
1805
1805
|
}
|
|
1806
1806
|
|
|
1807
|
+
const validation_ret = file_upload_validator(file_name);
|
|
1807
1808
|
if (doc_ret.code < 0) {
|
|
1808
1809
|
if (drive_type === 'studio') {
|
|
1809
1810
|
const app_id_reference = await _common.get_project_app_id(app_id);
|
|
@@ -1823,7 +1824,7 @@ const get_drive_doc = async (type, drive_type, app_id, uid, file_path, headers)
|
|
|
1823
1824
|
ip: headers?.['cf-connecting-ip'],
|
|
1824
1825
|
country: headers?.['cf-ipcountry'],
|
|
1825
1826
|
file_ext: ext,
|
|
1826
|
-
is_archive:
|
|
1827
|
+
is_archive: validation_ret.valid && validation_ret.category === 'archive' ? true : false,
|
|
1827
1828
|
drive_type,
|
|
1828
1829
|
app_id: await _common.get_project_app_id(app_id),
|
|
1829
1830
|
app_id_reference: await _common.get_project_app_id(app_id, true),
|