mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Added short-hash support to downloads
This commit is contained in:
		@@ -311,7 +311,7 @@ func Download(ctx *context.Context) {
 | 
				
			|||||||
			ctx.Handle(500, "GetTagCommit", err)
 | 
								ctx.Handle(500, "GetTagCommit", err)
 | 
				
			||||||
			return
 | 
								return
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	} else if len(refName) == 40 {
 | 
						} else if len(refName) >= 4 && len(refName) <= 40 {
 | 
				
			||||||
		commit, err = gitRepo.GetCommit(refName)
 | 
							commit, err = gitRepo.GetCommit(refName)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			ctx.Handle(404, "GetCommit", nil)
 | 
								ctx.Handle(404, "GetCommit", nil)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user