Servoy / svyReCAPTCHA

NGClient component for the Google ReCAPTCHA validation
MIT License
0 stars 2 forks source link

reCAPTCHA validateResponse function throws typeError #1

Open mboegem opened 5 years ago

mboegem commented 5 years ago

The reCAPTCHA validateResponse function throws typeError: Cannot find function append in object

This is coming from the server.js file #52 content.append(line);

EDIT: doesn't work on demo.servoy.com as well

mboegem commented 5 years ago

Rewrite of #50 to #52 as below resolves this issue: var content = new java.lang.String(); while ( (line = reader.readLine()) != null) { content = content + line; }