Commit 49f23291 authored by Him188's avatar Him188

Fail-fast `inputSize` checking

parent 0d089563
...@@ -79,7 +79,7 @@ class ExternalImage private constructor( ...@@ -79,7 +79,7 @@ class ExternalImage private constructor(
) : this(width, height, md5, imageFormat, input as Any, input.available().toLong(), filename) ) : this(width, height, md5, imageFormat, input as Any, input.available().toLong(), filename)
init { init {
require(inputSize in 0L..Int.MAX_VALUE.toLong()) { "file is too big" } require(inputSize < 30L * 1024 * 1024) { "file is too big. Maximum is about 20MB" }
} }
companion object { companion object {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment