summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--routers/repo/branch.go14
1 files changed, 13 insertions, 1 deletions
diff --git a/routers/repo/branch.go b/routers/repo/branch.go
index 295aeaa24b..823b031a48 100644
--- a/routers/repo/branch.go
+++ b/routers/repo/branch.go
@@ -126,7 +126,19 @@ func deleteBranch(ctx *context.Context, branchName string) error {
return err
}
- // Don't return error here
+ // Don't return error below this
+ if err := models.PushUpdate(branchName, models.PushUpdateOptions{
+ RefFullName: git.BranchPrefix + branchName,
+ OldCommitID: commit.ID.String(),
+ NewCommitID: git.EmptySHA,
+ PusherID: ctx.User.ID,
+ PusherName: ctx.User.Name,
+ RepoUserName: ctx.Repo.Owner.Name,
+ RepoName: ctx.Repo.Repository.Name,
+ }); err != nil {
+ log.Error(4, "Update: %v", err)
+ }
+
if err := ctx.Repo.Repository.AddDeletedBranch(branchName, commit.ID.String(), ctx.User.ID); err != nil {
log.Warn("AddDeletedBranch: %v", err)
}