aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 3b000c7..87be0d2 100644
--- a/main.go
+++ b/main.go
@@ -75,7 +75,7 @@ func main() {
appRepo := repo.NewAppRepo(appDB)
customCSS := config.CustomCSS
- if !strings.HasPrefix(customCSS, "http://") &&
+ if len(customCSS) > 0 && !strings.HasPrefix(customCSS, "http://") &&
!strings.HasPrefix(customCSS, "https://") {
customCSS = "/static/" + customCSS
}