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:
3392133
)
Prevent panic on empty authorlist
author
Mathias Biilmann
<info@mathias-biilmann.net>
Sun, 11 Sep 2016 08:46:56 +0000
(10:46 +0200)
committer
Bjørn Erik Pedersen
<bjorn.erik.pedersen@gmail.com>
Sun, 11 Sep 2016 08:46:56 +0000
(10:46 +0200)
hugolib/page.go
patch
|
blob
|
history
diff --git
a/hugolib/page.go
b/hugolib/page.go
index 7892f222d8f8f2375b3e4128042747fdb2e84fc6..bc54aac91c9ffc249d52482e4a6867a643787661 100644
(file)
--- a/
hugolib/page.go
+++ b/
hugolib/page.go
@@
-193,8
+193,11
@@
func (p *Page) Author() Author {
func (p *Page) Authors() AuthorList {
authorKeys, ok := p.Params["authors"]
+ if !ok {
+ return AuthorList{}
+ }
authors := authorKeys.([]string)
- if
!ok ||
len(authors) < 1 || len(p.Site.Authors) < 1 {
+ if len(authors) < 1 || len(p.Site.Authors) < 1 {
return AuthorList{}
}