mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 16:01:32 +01:00 
			
		
		
		
	if repo does not exist, show a 404 not a 500 (#5900)
This commit is contained in:
		
							parent
							
								
									a967cf9e99
								
							
						
					
					
						commit
						8b5f6ced22
					
				| @ -287,7 +287,10 @@ func Issues(ctx *context.Context) { | ||||
| 	if repoID > 0 { | ||||
| 		if _, ok := showReposMap[repoID]; !ok { | ||||
| 			repo, err := models.GetRepositoryByID(repoID) | ||||
| 			if err != nil { | ||||
| 			if models.IsErrRepoNotExist(err) { | ||||
| 				ctx.NotFound("GetRepositoryByID", err) | ||||
| 				return | ||||
| 			} else if err != nil { | ||||
| 				ctx.ServerError("GetRepositoryByID", fmt.Errorf("[%d]%v", repoID, err)) | ||||
| 				return | ||||
| 			} | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user