mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Backport #25733 by @hiifong When only the casing of the username changes, update the owner name of the repo, and keep the original logic consistent with other conditions. example: assume your username is `gitea`, lowercase username is `gitea` too, repo URL is `.../gitea/{repo}`. You change your username to `Gitea`, `GiTea` or something like that, as long as the lowercase username is still `gitea`, the repo URL remained `.../gitea/{repo}`. this pr keeps the new username consistent with the repo URL. Before:   After:   Co-authored-by: hiifong <i@hiif.ong>
This commit is contained in:
		@@ -89,7 +89,6 @@ func SettingsPost(ctx *context.Context) {
 | 
			
		||||
		// reset ctx.org.OrgLink with new name
 | 
			
		||||
		ctx.Org.OrgLink = setting.AppSubURL + "/org/" + url.PathEscape(form.Name)
 | 
			
		||||
		log.Trace("Organization name changed: %s -> %s", org.Name, form.Name)
 | 
			
		||||
		nameChanged = false
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// In case it's just a case change.
 | 
			
		||||
@@ -130,11 +129,6 @@ func SettingsPost(ctx *context.Context) {
 | 
			
		||||
				return
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	} else if nameChanged {
 | 
			
		||||
		if err := repo_model.UpdateRepositoryOwnerNames(org.ID, org.Name); err != nil {
 | 
			
		||||
			ctx.ServerError("UpdateRepository", err)
 | 
			
		||||
			return
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	log.Trace("Organization setting updated: %s", org.Name)
 | 
			
		||||
 
 | 
			
		||||
@@ -58,7 +58,7 @@ func RenameUser(ctx context.Context, u *user_model.User, newUserName string) err
 | 
			
		||||
			u.Name = oldUserName
 | 
			
		||||
			return err
 | 
			
		||||
		}
 | 
			
		||||
		return nil
 | 
			
		||||
		return repo_model.UpdateRepositoryOwnerNames(u.ID, newUserName)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	ctx, committer, err := db.TxContext(ctx)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user