Improve "attachments exceed max size" error message
This commit is contained in:
parent
297afc5ce6
commit
5087e4b327
1 changed files with 1 additions and 1 deletions
|
@ -695,7 +695,7 @@ func handleComposeAttachment(ctx *alps.Context) error {
|
|||
if err == alps.ErrAttachmentCacheSize {
|
||||
form.RemoveAll()
|
||||
return ctx.JSON(http.StatusBadRequest, map[string]string{
|
||||
"error": "The total size of unset attachments on your session exceeds the maximum file size. Remove some attachments and try again.",
|
||||
"error": "Your attachments exceed the maximum file size. Remove some and try again.",
|
||||
})
|
||||
} else if err != nil {
|
||||
form.RemoveAll()
|
||||
|
|
Loading…
Add table
Reference in a new issue