mirror of
https://github.com/go-gitea/gitea
synced 2024-11-08 22:17:13 +01:00
parent
1c3754bcec
commit
a6c7716742
@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
|
|||||||
|
|
||||||
![](public/img/gogs-large-resize.png)
|
![](public/img/gogs-large-resize.png)
|
||||||
|
|
||||||
##### Current version: 0.7.6 Beta
|
##### Current version: 0.7.7 Beta
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
|
2
gogs.go
2
gogs.go
@ -17,7 +17,7 @@ import (
|
|||||||
"github.com/gogits/gogs/modules/setting"
|
"github.com/gogits/gogs/modules/setting"
|
||||||
)
|
)
|
||||||
|
|
||||||
const APP_VER = "0.7.6.1112 Beta"
|
const APP_VER = "0.7.7.1113 Beta"
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
runtime.GOMAXPROCS(runtime.NumCPU())
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
||||||
|
@ -14,8 +14,8 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
"unicode"
|
"unicode"
|
||||||
|
|
||||||
"github.com/go-xorm/xorm"
|
|
||||||
"github.com/Unknwon/com"
|
"github.com/Unknwon/com"
|
||||||
|
"github.com/go-xorm/xorm"
|
||||||
|
|
||||||
api "github.com/gogits/go-gogs-client"
|
api "github.com/gogits/go-gogs-client"
|
||||||
|
|
||||||
@ -138,10 +138,10 @@ func (a Action) GetIssueInfos() []string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a Action) GetIssueTitle() string {
|
func (a Action) GetIssueTitle() string {
|
||||||
issueIndex := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
|
index := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
|
||||||
issue, err := GetIssueByIndex(a.RepoID, issueIndex)
|
issue, err := GetIssueByIndex(a.RepoID, index)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(4, "GetIssueByID: %v", err)
|
log.Error(4, "GetIssueByIndex: %v", err)
|
||||||
return "500 when get title"
|
return "500 when get title"
|
||||||
}
|
}
|
||||||
return issue.Name
|
return issue.Name
|
||||||
|
@ -1 +1 @@
|
|||||||
0.7.6.1112 Beta
|
0.7.7.1113 Beta
|
Loading…
Reference in New Issue
Block a user