1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 10:18:38 +00:00
This commit is contained in:
Alexey Makhov
2015-11-13 00:01:51 +03:00
parent 588a0db218
commit 1bfebdcdf6
2 changed files with 3 additions and 4 deletions

View File

@@ -10,12 +10,12 @@ import (
"fmt"
"path"
"regexp"
"strconv"
"strings"
"time"
"unicode"
"github.com/go-xorm/xorm"
"github.com/Unknwon/com"
api "github.com/gogits/go-gogs-client"
@@ -138,8 +138,8 @@ func (a Action) GetIssueInfos() []string {
}
func (a Action) GetIssueTitle() string {
issueID, _ := strconv.Atoi(strings.SplitN(a.Content, "|", 2)[0])
issue, _ := GetIssueByID(int64(issueID))
issueID := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
issue, _ := GetIssueByID(issueID)
return issue.Name
}