Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed so 'debug' output does not force recognition per #788 (#789)
  • Loading branch information
Balearica committed Jun 23, 2023
1 parent b7411f4 commit 785a9f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker-script/index.js
Expand Up @@ -266,7 +266,7 @@ const processOutput = (output) => {
if (params.tessjs_create_tsv === '1') workingOutput.tsv = true;
if (params.tessjs_create_unlv === '1') workingOutput.unlv = true;

const nonRecOutputs = ['imageColor', 'imageGrey', 'imageBinary', 'layoutBlocks'];
const nonRecOutputs = ['imageColor', 'imageGrey', 'imageBinary', 'layoutBlocks', 'debug'];
let recOutputCount = 0;
for (const prop of Object.keys(output)) {
workingOutput[prop] = output[prop];
Expand Down

0 comments on commit 785a9f9

Please sign in to comment.