diff --git a/app/services/documents.ts b/app/services/documents.ts index cc346e27..eea2a7c8 100644 --- a/app/services/documents.ts +++ b/app/services/documents.ts @@ -464,7 +464,7 @@ LEFT JOIN } async createModelFromAttributes(attributes: Required | OCRDocument): Promise { const { folders, id, pagesOrder, ...others } = attributes; - DEV_LOG && console.log('createModelFromAttributes', id, folders, typeof folders, folders?.split('#$%')); + // DEV_LOG && console.log('createModelFromAttributes', id, folders, typeof folders, folders?.split('#$%')); const document = new OCRDocument(id); Object.assign(document, { id, diff --git a/nativescript.config.js b/nativescript.config.js index 37c943cc..20c8f692 100644 --- a/nativescript.config.js +++ b/nativescript.config.js @@ -46,7 +46,7 @@ module.exports = { hooks: [ { type: 'after-prepareNativeApp', - script: 'toosl/scripts/after-prepareNativeApp.js' + script: 'tools/scripts/after-prepareNativeApp.js' } ] };