mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Return 404 instead of 403 if user can not access the repo (#23155)
Fixes https://github.com/go-gitea/gitea/issues/23150 Before:  After:  Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		@@ -228,7 +228,7 @@ func httpBase(ctx *context.Context) (h *serviceHandler) {
 | 
				
			|||||||
				}
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				if !p.CanAccess(accessMode, unitType) {
 | 
									if !p.CanAccess(accessMode, unitType) {
 | 
				
			||||||
					ctx.PlainText(http.StatusForbidden, "User permission denied")
 | 
										ctx.PlainText(http.StatusNotFound, "Repository not found")
 | 
				
			||||||
					return
 | 
										return
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user