Proper handling of 404 page return value

This commit is contained in:
spf13 2013-10-07 09:24:13 -04:00
parent 7468292c4e
commit 5e14af957a

View file

@ -539,7 +539,9 @@ func (s *Site) RenderHomePage() error {
return err return err
} }
err = s.WritePublic("404.html", x) err = s.WritePublic("404.html", x)
return err if err != nil {
return err
}
} }
return nil return nil