Browse Source

#2878 print error of JSON unmarshal and always returns a valid object

for-closed-social
Unknwon 8 years ago
parent
commit
ac53bb593d
5 changed files with 7 additions and 4 deletions
  1. +1
    -1
      README.md
  2. +2
    -0
      docker/README.md
  3. +1
    -1
      gogs.go
  4. +2
    -1
      modules/template/template.go
  5. +1
    -1
      templates/.VERSION

+ 1
- 1
README.md View File

@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)
##### Current version: 0.9.16
##### Current version: 0.9.17
| Web | UI | Preview |
|:-------------:|:-------:|:-------:|

+ 2
- 0
docker/README.md View File

@ -43,9 +43,11 @@ If you're more comfortable with mounting data to a data container, the commands
```
# Create data container
docker run --name=gogs-data --entrypoint /bin/true gogs/gogs
# Use `docker run` for the first time.
docker run --name=gogs --volumes-from gogs-data -p 10022:22 -p 10080:3000 gogs/gogs
```
#### Using Docker 1.9 Volume command
```

+ 1
- 1
gogs.go View File

@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
const APP_VER = "0.9.16.0325"
const APP_VER = "0.9.17.0326"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())

+ 2
- 1
modules/template/template.go View File

@ -18,6 +18,7 @@ import (
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/markdown"
"github.com/gogits/gogs/modules/setting"
)
@ -255,7 +256,7 @@ func ActionIcon(opType int) string {
func ActionContent2Commits(act Actioner) *models.PushCommits {
push := models.NewPushCommits()
if err := json.Unmarshal([]byte(act.GetContent()), push); err != nil {
return nil
log.Error(4, "json.Unmarshal:\n%s\nERROR: %v", act.GetContent(), err)
}
return push
}

+ 1
- 1
templates/.VERSION View File

@ -1 +1 @@
0.9.16.0325
0.9.17.0326

Loading…
Cancel
Save