summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-04 15:36:49 -0600
committerJeff Carr <[email protected]>2024-12-04 15:36:49 -0600
commitf98179971e574de202c582576e59a8e3da68530f (patch)
treed7ae78b10ea961722015a658e82cb13dbe92ad2d /human.go
parent4d221c522035e05947b136385e23b78eccc9c578 (diff)
this .proto might allow generic marshal recovery
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) {