We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 548b9f0 commit a645661Copy full SHA for a645661
core/validation/src/main/java/com/shifthackz/aisdv1/core/validation/dimension/DimensionValidatorImpl.kt
@@ -27,13 +27,13 @@ internal class DimensionValidatorImpl(
27
)
28
input.toInt() > maximum -> ValidationResult(
29
isValid = false,
30
- validationError = DimensionValidator.Error.LessThanMinimum(maximum),
+ validationError = DimensionValidator.Error.BiggerThanMaximum(maximum),
31
32
else -> ValidationResult(isValid = true)
33
}
34
35
companion object {
36
private const val MINIMUM = 64
37
- private const val MAXIMUM = 1024
+ private const val MAXIMUM = 2048
38
39
0 commit comments