Skip to content

Commit fe1f09b

Browse files
committed
📦 updates MDK for v0.0.3
1 parent ffeedd1 commit fe1f09b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Taskfile.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ tasks:
2222
env:
2323
#TAG: "v0.0.1"
2424
#TAG: "v0.0.2"
25-
TAG: "v0.0.3" # next release
25+
TAG: "v0.0.3" # current release
26+
#TAG: "v0.0.4" # current release
2627
cmds:
2728
- echo "📦 Generating release..."
2829
- git add .

handle.http.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package capsule
22

33
import (
4+
"encoding/base64"
45
"strconv"
56

67
"github.com/valyala/fastjson"
@@ -53,7 +54,9 @@ func callHandleHTTP(JSONDataPos *uint32, JSONDataSize uint32) uint64 {
5354
if len(retValue.TextBody) == 0 {
5455
textBody = ""
5556
} else {
56-
textBody = retValue.TextBody
57+
// avoid special characters in jsonString
58+
textBody = base64.StdEncoding.EncodeToString([]byte(retValue.TextBody))
59+
//textBody = retValue.TextBody
5760
}
5861

5962
jsonHTTPResponse := `{"JSONBody":`+jsonBody+`,"TextBody":"`+textBody+`","Headers":`+retValue.Headers+`,"StatusCode":`+strconv.Itoa(retValue.StatusCode)+`}`

0 commit comments

Comments
 (0)