Skip to content

Commit

Permalink
compress images defaults to true
Browse files Browse the repository at this point in the history
  • Loading branch information
IrosTheBeggar committed Dec 21, 2024
1 parent e6bb1b3 commit af2fad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const scanOptions = Joi.object({
pause: Joi.number().min(0).default(0),
bootScanDelay: Joi.number().default(3),
maxConcurrentTasks: Joi.number().integer().min(1).default(1),
compressImage: Joi.boolean().default(false)
compressImage: Joi.boolean().default(true)
});

const dbOptions = Joi.object({
Expand Down

0 comments on commit af2fad9

Please sign in to comment.