mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Remove useless fmt.Errorf("%v", err) (#3337)
This commit is contained in:
		
				
					committed by
					
						
						Andrey Nering
					
				
			
			
				
	
			
			
			
						parent
						
							e7295f27a9
						
					
				
				
					commit
					84feb016f5
				
			@@ -310,7 +310,7 @@ func Issues(ctx *context.Context) {
 | 
			
		||||
	showRepos := models.RepositoryListOfMap(showReposMap)
 | 
			
		||||
	sort.Sort(showRepos)
 | 
			
		||||
	if err = showRepos.LoadAttributes(); err != nil {
 | 
			
		||||
		ctx.Handle(500, "LoadAttributes", fmt.Errorf("%v", err))
 | 
			
		||||
		ctx.Handle(500, "LoadAttributes", err)
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user