@xuda.io/drive_module 1.1.971 → 1.1.973
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 +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1712,7 +1712,7 @@ const ocr_drive_file = async function (app_id, doc) {
|
|
|
1712
1712
|
try {
|
|
1713
1713
|
doc.ocr_stat = 2;
|
|
1714
1714
|
doc.ocr_stat_date = Date.now();
|
|
1715
|
-
let save_ret = await save_drive_doc(drive_type, app_id, doc, file_path);
|
|
1715
|
+
// let save_ret = await save_drive_doc(drive_type, app_id, doc, file_path);
|
|
1716
1716
|
|
|
1717
1717
|
doc = await get_drive_doc(
|
|
1718
1718
|
"file",
|
|
@@ -1811,7 +1811,7 @@ const ocr_drive_file = async function (app_id, doc) {
|
|
|
1811
1811
|
} finally {
|
|
1812
1812
|
doc.ocr_stat_ts = Date.now();
|
|
1813
1813
|
|
|
1814
|
-
save_ret = await save_drive_doc(drive_type, app_id, doc, file_path);
|
|
1814
|
+
// save_ret = await save_drive_doc(drive_type, app_id, doc, file_path);
|
|
1815
1815
|
}
|
|
1816
1816
|
};
|
|
1817
1817
|
|