Merge pull request #822 from writefreely/custom-css-config

Look for custom CSS in static_parent_dir
This commit is contained in:
Matt Baer 2023-12-01 17:34:03 -05:00 committed by GitHub
commit e932467ac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
app.go
View File

@ -365,7 +365,7 @@ func pageForReq(app *App, r *http.Request) page.StaticPage {
}
// Use custom style, if file exists
if _, err := os.Stat(filepath.Join(staticDir, "local", "custom.css")); err == nil {
if _, err := os.Stat(filepath.Join(app.cfg.Server.StaticParentDir, staticDir, "local", "custom.css")); err == nil {
p.CustomCSS = true
}