mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 04:14:01 +01:00 
			
		
		
		
	#1854 change issueId to issueIndex
This commit is contained in:
		
							parent
							
								
									3e7695ae91
								
							
						
					
					
						commit
						ee645af107
					
				@ -138,8 +138,8 @@ func (a Action) GetIssueInfos() []string {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (a Action) GetIssueTitle() string {
 | 
			
		||||
	issueID := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
 | 
			
		||||
	issue, err := GetIssueByID(issueID)
 | 
			
		||||
	issueIndex := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
 | 
			
		||||
	issue, err := GetIssueByIndex(a.RepoID, issueIndex)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Error(4, "GetIssueByID: %v", err)
 | 
			
		||||
		return "500 when get title"
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user