mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
fix critical bug
This commit is contained in:
parent
a3b15674d5
commit
e3416a6181
9
setup.go
9
setup.go
@ -203,7 +203,14 @@ func getFrontMatter(conf *Config) string {
|
||||
log.Println(err)
|
||||
fmt.Printf("Can't get the default frontmatter from the configuration. %s will be used.\n", format)
|
||||
} else {
|
||||
bytes = frontmatter.AppendRune(bytes, frontmatter.StringFormatToRune(format))
|
||||
r, err := frontmatter.StringFormatToRune(format)
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
fmt.Printf("Can't get the default frontmatter from the configuration. %s will be used.\n", format)
|
||||
return format
|
||||
}
|
||||
|
||||
bytes = frontmatter.AppendRune(bytes, r)
|
||||
f, err := frontmatter.Unmarshal(bytes)
|
||||
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user