diff options
Diffstat (limited to 'human.go')
| -rw-r--r-- | human.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,10 +23,10 @@ func standardHeader() string { func (f *Forge) standardHeader(r *ForgeConfig) string { var flags string var readonly string - if f.IsPrivate(r.GoPath) { + if f.Config.IsPrivate(r.GoPath) { flags += "(private) " } - if f.IsFavorite(r.GoPath) { + if f.Config.IsFavorite(r.GoPath) { flags += "(favorite) " } if f.Config.IsReadOnly(r.GoPath) { |
