aboutsummaryrefslogtreecommitdiff
path: root/internal/app/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app/api.go')
-rw-r--r--internal/app/api.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/internal/app/api.go b/internal/app/api.go
index c64e946e..94c2bbc0 100644
--- a/internal/app/api.go
+++ b/internal/app/api.go
@@ -9,8 +9,6 @@ import (
"github.com/microcosm-cc/bluemonday"
"gopkg.in/macaron.v1"
-
- "gogs.io/gogs/internal/context"
)
func ipynbSanitizer() *bluemonday.Policy {
@@ -24,13 +22,13 @@ func ipynbSanitizer() *bluemonday.Policy {
func SanitizeIpynb() macaron.Handler {
p := ipynbSanitizer()
- return func(c *context.Context) {
+ return func(c *macaron.Context) {
html, err := c.Req.Body().String()
if err != nil {
- c.Error(err, "read body")
+ c.Error(http.StatusInternalServerError, "read body")
return
}
- c.PlainText(http.StatusOK, p.Sanitize(html))
+ c.PlainText(http.StatusOK, []byte(p.Sanitize(html)))
}
}