diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2021-12-15 14:59:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 14:59:57 +0800 |
commit | 4da1d9781025aa4a85899b1ddeb25aabbaa82703 (patch) | |
tree | 9714f71f2fb042e44d418fbcfc56cd8440a1bbb1 /routers/private/mail.go | |
parent | 9d943bf374e56e4d403303a6a2caafc1c79cdb6f (diff) | |
download | gitea-4da1d9781025aa4a85899b1ddeb25aabbaa82703.tar.gz gitea-4da1d9781025aa4a85899b1ddeb25aabbaa82703.zip |
Refactor HTTP request context (#17979)
Diffstat (limited to 'routers/private/mail.go')
-rw-r--r-- | routers/private/mail.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/private/mail.go b/routers/private/mail.go index 5218cd34a1..8b69c38093 100644 --- a/routers/private/mail.go +++ b/routers/private/mail.go @@ -86,5 +86,5 @@ func sendEmail(ctx *context.PrivateContext, subject, message string, to []string wasSent := strconv.Itoa(len(to)) - ctx.PlainText(http.StatusOK, []byte(wasSent)) + ctx.PlainText(http.StatusOK, wasSent) } |