summaryrefslogtreecommitdiff
path: root/branches.go
diff options
context:
space:
mode:
Diffstat (limited to 'branches.go')
-rw-r--r--branches.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/branches.go b/branches.go
index 2f72127..a503a96 100644
--- a/branches.go
+++ b/branches.go
@@ -205,10 +205,10 @@ func (f *Forge) makeUserBranches() error {
}
func testReload(repo *gitpb.Repo) error {
- if !repo.DidRepoChange() {
+ if !repo.HasChanged() {
return nil
}
- repo.Reload()
+ repo.ReloadCheck()
return log.Errorf("repo changed")
}