Skip to content

Commit 3ceef3f

Browse files
committed
update
1 parent d91c322 commit 3ceef3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

codegen/tml/config/template_config.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ func initremoteapp(notice func(*AppConfig), wait chan *struct{}) (stopwatch func
214214
return
215215
}
216216
c := &AppConfig{}
217-
if e := json.Unmarshal(common.Str2byte(keyvalue), c); e != nil {
217+
if e := json.Unmarshal(common.STB(keyvalue), c); e != nil {
218218
log.Error(nil, "[config.remote.app] config data format wrong", log.CError(e))
219219
return
220220
}
@@ -355,7 +355,7 @@ func initremotesource(wait chan *struct{}) (stopwatch func()) {
355355
return
356356
}
357357
c := &sourceConfig{}
358-
if e := json.Unmarshal(common.Str2byte(keyvalue), c); e != nil {
358+
if e := json.Unmarshal(common.STB(keyvalue), c); e != nil {
359359
log.Error(nil, "[config.remote.source] config data format wrong", log.CError(e))
360360
return
361361
}

internal/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "fmt"
44

55
var major = 0
66
var minor = 0
7-
var patch = 100
7+
var patch = 101
88
var status = ""
99

1010
func String() string {

0 commit comments

Comments
 (0)