Fix engine bug in getIssueByID (#1934)
This commit is contained in:
		
							parent
							
								
									e0a63a20e0
								
							
						
					
					
						commit
						9fbdd7d787
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -993,7 +993,7 @@ func getIssueByID(e Engine, id int64) (*Issue, error) { | ||||||
| 	} else if !has { | 	} else if !has { | ||||||
| 		return nil, ErrIssueNotExist{id, 0, 0} | 		return nil, ErrIssueNotExist{id, 0, 0} | ||||||
| 	} | 	} | ||||||
| 	return issue, issue.LoadAttributes() | 	return issue, issue.loadAttributes(e) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // GetIssueByID returns an issue by given ID.
 | // GetIssueByID returns an issue by given ID.
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue