* fix: support delete non-urlencoded wiki page * fix: check error
This commit is contained in:
		
							parent
							
								
									7f6019e492
								
							
						
					
					
						commit
						d268c9d6e1
					
				
					 1 changed files with 3 additions and 8 deletions
				
			
		|  | @ -308,14 +308,9 @@ func DeleteWikiPage(doer *models.User, repo *models.Repository, wikiName string) | |||
| 		return fmt.Errorf("Unable to read HEAD tree to index in: %s %v", basePath, err) | ||||
| 	} | ||||
| 
 | ||||
| 	wikiPath := NameToFilename(wikiName) | ||||
| 	filesInIndex, err := gitRepo.LsFiles(wikiPath) | ||||
| 	found := false | ||||
| 	for _, file := range filesInIndex { | ||||
| 		if file == wikiPath { | ||||
| 			found = true | ||||
| 			break | ||||
| 		} | ||||
| 	found, wikiPath, err := prepareWikiFileName(gitRepo, wikiName) | ||||
| 	if err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 	if found { | ||||
| 		err := gitRepo.RemoveFilesFromIndex(wikiPath) | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue