mirror of
https://github.com/go-gitea/gitea
synced 2024-11-19 08:22:44 +01:00
#1854 change issueId to issueIndex
This commit is contained in:
parent
3e7695ae91
commit
ee645af107
1 changed files with 2 additions and 2 deletions
|
@ -138,8 +138,8 @@ func (a Action) GetIssueInfos() []string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a Action) GetIssueTitle() string {
|
func (a Action) GetIssueTitle() string {
|
||||||
issueID := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
|
issueIndex := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
|
||||||
issue, err := GetIssueByID(issueID)
|
issue, err := GetIssueByIndex(a.RepoID, issueIndex)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(4, "GetIssueByID: %v", err)
|
log.Error(4, "GetIssueByID: %v", err)
|
||||||
return "500 when get title"
|
return "500 when get title"
|
||||||
|
|
Loading…
Reference in a new issue