Skip to content
Snippets Groups Projects
Commit 4fa457d4 authored by Yoan VALLET's avatar Yoan VALLET
Browse files

Update main.go - remove the append of }

parent acf8b8eb
No related branches found
No related tags found
No related merge requests found
Pipeline #9095 passed
......@@ -459,8 +459,8 @@ func main() {
if len(s[1]) > 0 {
payload, _ := base64.StdEncoding.DecodeString(s[1])
log.Debug(string(payload))
payload = append(payload, []byte{125}...)
log.Debug(string(payload))
// payload = append(payload, []byte{125}...)
// log.Debug(string(payload))
// Decode the payload from the token
var token GrdfConsentementToken
err := json.Unmarshal(payload, &token)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment