summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
Diffstat (limited to 'human.go')
-rw-r--r--human.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/human.go b/human.go
index 6685b48..82ad766 100644
--- a/human.go
+++ b/human.go
@@ -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) {