mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-10-12 02:26:09 -05:00
Feature: Allow a user to disable the pixel limit for OCR entirely (#5996)
This commit is contained in:
@@ -151,7 +151,7 @@ class ApplicationConfiguration(AbstractSingletonModel):
|
||||
max_image_pixels = models.FloatField(
|
||||
verbose_name=_("Sets the maximum image size for decompression"),
|
||||
null=True,
|
||||
validators=[MinValueValidator(1_000_000.0)],
|
||||
validators=[MinValueValidator(0.0)],
|
||||
)
|
||||
|
||||
color_conversion_strategy = models.CharField(
|
||||
|
Reference in New Issue
Block a user