summaryrefslogtreecommitdiff
path: root/iterByMode.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-21 04:49:06 -0500
committerJeff Carr <[email protected]>2025-10-21 04:49:06 -0500
commitc9fae2681ba33612fca2418523964cfc7b92cac1 (patch)
tree471ed9830399c5f36210f3ceff6c0b90c41d42bd /iterByMode.go
parent69b5038c58e6a8487f22aeaf28eddec5c785c283 (diff)
starting to limp back to working
Diffstat (limited to 'iterByMode.go')
-rw-r--r--iterByMode.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/iterByMode.go b/iterByMode.go
index 889181d..f3113a4 100644
--- a/iterByMode.go
+++ b/iterByMode.go
@@ -12,7 +12,7 @@ func (f *Forge) IterByMode() iter.Seq[*gitpb.Repo] {
panic("forge is not initialized")
}
repos := gitpb.NewRepos()
- if f.Mode == ForgeMode_NORMAL {
+ if f.mode == ForgeMode_NORMAL {
for r := range f.Repos.IterAll() {
if !strings.HasPrefix(r.Namespace, "go.wit.com") {
continue