summaryrefslogtreecommitdiffstats
path: root/api/file.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/file.go')
-rw-r--r--api/file.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/api/file.go b/api/file.go
index b0cedde40..fdc9a8747 100644
--- a/api/file.go
+++ b/api/file.go
@@ -46,8 +46,6 @@ const (
RotatedCCW = 6
RotatedCCWMirrored = 7
RotatedCW = 8
-
- MaxImageSize = 6048 * 4032 // 24 megapixels, roughly 36MB as a raw image
)
func InitFile() {
@@ -162,7 +160,7 @@ func doUploadFile(teamId string, channelId string, userId string, rawFilename st
if info.IsImage() {
// Check dimensions before loading the whole thing into memory later on
- if info.Width*info.Height > MaxImageSize {
+ if info.Width*info.Height > model.MaxImageSize {
err := model.NewLocAppError("uploadFile", "api.file.upload_file.large_image.app_error", map[string]interface{}{"Filename": filename}, "")
err.StatusCode = http.StatusBadRequest
return nil, err