This is an automated email from the ASF dual-hosted git repository. linkinstar pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-answer.git
commit f29b43b956659395133ee43c3d5501ae92d52cfe Author: LinkinStars <[email protected]> AuthorDate: Thu Nov 14 14:42:31 2024 +0800 feat(file): update the max image size --- pkg/checker/file_type.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/checker/file_type.go b/pkg/checker/file_type.go index 6c61dca2..fffcd960 100644 --- a/pkg/checker/file_type.go +++ b/pkg/checker/file_type.go @@ -35,7 +35,7 @@ import ( ) const ( - maxImageSize = 8192 * 8192 + maxImageSize = 16384 * 16384 ) // IsSupportedImageFile currently answers support image type is
