summaryrefslogtreecommitdiffstats
path: root/api4/file.go
diff options
context:
space:
mode:
authorJesús Espino <jespinog@gmail.com>2018-07-18 10:07:00 +0200
committerGitHub <noreply@github.com>2018-07-18 10:07:00 +0200
commitb367b1ff4064557deacae0f7ecf77fae4624b8c6 (patch)
tree5b9218d64d0e659424db97c996bd20fa1e7ee8d9 /api4/file.go
parente718d2544f6c719bc6e31f569400f44d54de3a34 (diff)
downloadchat-b367b1ff4064557deacae0f7ecf77fae4624b8c6.tar.gz
chat-b367b1ff4064557deacae0f7ecf77fae4624b8c6.tar.bz2
chat-b367b1ff4064557deacae0f7ecf77fae4624b8c6.zip
Do not close the connection abruptly on too big file uploads (#9083)
Diffstat (limited to 'api4/file.go')
-rw-r--r--api4/file.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/api4/file.go b/api4/file.go
index bd8c46405..ab0fbce14 100644
--- a/api4/file.go
+++ b/api4/file.go
@@ -5,6 +5,7 @@ package api4
import (
"io"
+ "io/ioutil"
"net/http"
"net/url"
"strconv"
@@ -56,6 +57,8 @@ func (api *API) InitFile() {
}
func uploadFile(c *Context, w http.ResponseWriter, r *http.Request) {
+ defer io.Copy(ioutil.Discard, r.Body)
+
if !*c.App.Config().FileSettings.EnableFileAttachments {
c.Err = model.NewAppError("uploadFile", "api.file.attachments.disabled.app_error", nil, "", http.StatusNotImplemented)
return