summaryrefslogtreecommitdiffstats
path: root/model/outgoing_webhook.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/outgoing_webhook.go')
-rw-r--r--model/outgoing_webhook.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/outgoing_webhook.go b/model/outgoing_webhook.go
index 698a226e3..5f7a67d04 100644
--- a/model/outgoing_webhook.go
+++ b/model/outgoing_webhook.go
@@ -171,7 +171,7 @@ func (o *OutgoingWebhook) IsValid() *AppError {
return NewAppError("OutgoingWebhook.IsValid", "model.outgoing_hook.is_valid.display_name.app_error", nil, "", http.StatusBadRequest)
}
- if len(o.Description) > 128 {
+ if len(o.Description) > 500 {
return NewAppError("OutgoingWebhook.IsValid", "model.outgoing_hook.is_valid.description.app_error", nil, "", http.StatusBadRequest)
}