projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eff8457
)
Print error if index value in a page is wrong type
author
Hugo Duncan
<hugo@hugoduncan.org>
Tue, 20 Aug 2013 20:39:26 +0000
(16:39 -0400)
committer
Hugo Duncan
<hugo@hugoduncan.org>
Tue, 20 Aug 2013 20:39:26 +0000
(16:39 -0400)
This was causing a panic with no information displayed about the
page causing the error.
hugolib/site.go
patch
|
blob
|
history
diff --git
a/hugolib/site.go
b/hugolib/site.go
index 517c82dc3a1708ba9c12068abfe4ea70f3211f12..d6cd343cd2ecdde14eb18470ec94690a56208ace 100644
(file)
--- a/
hugolib/site.go
+++ b/
hugolib/site.go
@@
-362,8
+362,13
@@
func (s *Site) BuildSiteMeta() (err error) {
vals := p.GetParam(plural)
if vals != nil {
- for _, idx := range vals.([]string) {
- s.Indexes[plural].Add(idx, s.Pages[i])
+ v, ok := vals.([]string)
+ if ok {
+ for _, idx := range v {
+ s.Indexes[plural].Add(idx, s.Pages[i])
+ }
+ } else {
+ PrintErr("Invalid " + plural + " in " + p.File.FileName)
}
}
}