Skip to content

Commit

Permalink
Merge pull request #20 from guness/patch-2
Browse files Browse the repository at this point in the history
Added Missing Quotes Mark
  • Loading branch information
UlfBj authored Apr 8, 2024
2 parents 82cb3a3 + 3acfdf4 commit b131d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/vissv2server/atServer/atServer.go
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ func consentInquiryResponse(input string) string {
for i := 0; i < LISTSIZE; i++ {
if pendingList[i].GatingId == gatingId {
if pendingList[i].Consent == "NOT_SET" {
return `{"action": "at-inquiry", "sessionId":` + strconv.Itoa(gatingId) + `", "consent":"NOT_SET"}`
return `{"action": "at-inquiry", "sessionId":"` + strconv.Itoa(gatingId) + `", "consent":"NOT_SET"}`
} else if pendingList[i].Consent == "NO" {
removeFromPendingList(i)
return `{"action": "at-inquiry", "consent":"NO"}`
Expand Down

0 comments on commit b131d85

Please sign in to comment.