fix bad default for restricted words

This commit is contained in:
Umputun
2019-02-02 13:38:40 -06:00
parent 0e296bf1de
commit 0fe3f6dd7d
+1 -1
View File
@@ -59,7 +59,7 @@ type ServerCommand struct {
Port int `long:"port" env:"REMARK_PORT" default:"8080" description:"port"`
WebRoot string `long:"web-root" env:"REMARK_WEB_ROOT" default:"./web" description:"web root directory"`
UpdateLimit float64 `long:"update-limit" env:"UPDATE_LIMIT" default:"0.5" description:"updates/sec limit"`
RestrictedWords []string `long:"restricted-words" env:"RESTRICTED_WORDS" default:"" description:"words prohibited to use in comments" env-delim:","`
RestrictedWords []string `long:"restricted-words" env:"RESTRICTED_WORDS" description:"words prohibited to use in comments" env-delim:","`
Auth struct {
TTL struct {