mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	500 when wiki not exists
This commit is contained in:
		@@ -985,9 +985,14 @@ func TransferOwnership(u *User, newOwnerName string, repo *Repository) error {
 | 
				
			|||||||
	// Change repository directory name.
 | 
						// Change repository directory name.
 | 
				
			||||||
	if err = os.Rename(RepoPath(owner.Name, repo.Name), RepoPath(newOwner.Name, repo.Name)); err != nil {
 | 
						if err = os.Rename(RepoPath(owner.Name, repo.Name), RepoPath(newOwner.Name, repo.Name)); err != nil {
 | 
				
			||||||
		return fmt.Errorf("rename repository directory: %v", err)
 | 
							return fmt.Errorf("rename repository directory: %v", err)
 | 
				
			||||||
	} else if err = os.Rename(WikiPath(owner.Name, repo.Name), WikiPath(newOwner.Name, repo.Name)); err != nil {
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						wikiPath := WikiPath(owner.Name, repo.Name)
 | 
				
			||||||
 | 
						if com.IsExist(wikiPath) {
 | 
				
			||||||
 | 
							if err = os.Rename(wikiPath, WikiPath(newOwner.Name, repo.Name)); err != nil {
 | 
				
			||||||
			return fmt.Errorf("rename repository wiki: %v", err)
 | 
								return fmt.Errorf("rename repository wiki: %v", err)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return sess.Commit()
 | 
						return sess.Commit()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -1014,9 +1019,12 @@ func ChangeRepositoryName(u *User, oldRepoName, newRepoName string) (err error)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	wikiPath := WikiPath(u.Name, oldRepoName)
 | 
						wikiPath := WikiPath(u.Name, oldRepoName)
 | 
				
			||||||
	if com.IsExist(wikiPath) {
 | 
						if com.IsExist(wikiPath) {
 | 
				
			||||||
		err = os.Rename(WikiPath(u.Name, oldRepoName), WikiPath(u.Name, newRepoName))
 | 
							if err = os.Rename(wikiPath, WikiPath(u.Name, newRepoName)); err != nil {
 | 
				
			||||||
 | 
								return fmt.Errorf("rename repository wiki: %v", err)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	return err
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func getRepositoriesByForkID(e Engine, forkID int64) ([]*Repository, error) {
 | 
					func getRepositoriesByForkID(e Engine, forkID int64) ([]*Repository, error) {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user