aboutsummaryrefslogtreecommitdiff
path: root/internal/markup/sanitizer.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/markup/sanitizer.go')
-rw-r--r--internal/markup/sanitizer.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/markup/sanitizer.go b/internal/markup/sanitizer.go
index 981e1c73..4a8f6c28 100644
--- a/internal/markup/sanitizer.go
+++ b/internal/markup/sanitizer.go
@@ -10,7 +10,7 @@ import (
"github.com/microcosm-cc/bluemonday"
"gogs.io/gogs/internal/lazyregexp"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
// Sanitizer is a protection wrapper of *bluemonday.Policy which does not allow
@@ -40,7 +40,7 @@ func NewSanitizer() {
sanitizer.policy.AllowURLSchemes("data")
// Custom URL-Schemes
- sanitizer.policy.AllowURLSchemes(setting.Markdown.CustomURLSchemes...)
+ sanitizer.policy.AllowURLSchemes(conf.Markdown.CustomURLSchemes...)
})
}