Skip to content

Commit

Permalink
Fix typo in deleteUser (#3781) (#3783)
Browse files Browse the repository at this point in the history
num_watches was used where num_stars should have been used.
  • Loading branch information
michaelkuhn authored and lunny committed Apr 11, 2018
1 parent 2ec85e0 commit 31c0a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ func deleteUser(e *xorm.Session, u *User) error {
if err = e.Table("star").Cols("star.repo_id").
Where("star.uid = ?", u.ID).Find(&starredRepoIDs); err != nil {
return fmt.Errorf("get all stars: %v", err)
} else if _, err = e.Decr("num_watches").In("id", starredRepoIDs).Update(new(Repository)); err != nil {
} else if _, err = e.Decr("num_stars").In("id", starredRepoIDs).Update(new(Repository)); err != nil {
return fmt.Errorf("decrease repository num_stars: %v", err)
}
// ***** END: Star *****
Expand Down

0 comments on commit 31c0a33

Please sign in to comment.