Browse Source

fix: missing catch for asynchronous op

pull/7823/head
mertmit 10 months ago
parent
commit
9de208ff6d
  1. 4
      packages/nocodb/src/modules/jobs/jobs/export-import/export.service.ts

4
packages/nocodb/src/modules/jobs/jobs/export-import/export.service.ts

@ -633,7 +633,9 @@ export class ExportService {
offset + limit,
limit,
fields,
).then(resolve);
)
.then(resolve)
.catch(reject);
}
} catch (e) {
reject(e);

Loading…
Cancel
Save