fix(settings): another attempt at fixing, #2736

This commit is contained in:
Torkel Ödegaard 2015-09-14 15:54:35 +02:00
parent d7bfb727b0
commit 64973f1d57

View File

@ -363,7 +363,7 @@ func validateStaticRootPath() error {
return nil
}
if _, err := os.Stat(StaticRootPath + "css"); err == nil {
if _, err := os.Stat(path.Join(StaticRootPath, "css")); err == nil {
return nil
}