Преглед на файлове

fix(ocr): 修复识别结果为短横线时的错误

wui преди 10 месеца
родител
ревизия
b635d748a1
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      app/Controllers/Http/OcrRecordController.ts

+ 1 - 1
app/Controllers/Http/OcrRecordController.ts

@@ -10,7 +10,7 @@ export default class OcrRecordController {
     public async index({ request }: HttpContextContract) {
         const res = await this.paginationService.paginate(request.all())
         for (let e of res) {
-            if (e.img) {
+            if (e.img && e.img !== '-') {
                 e.img = await Drive.getSignedUrl(new URL(e.img).pathname.replace(/^\//, ''))
             }
         }