In the corona-cloud-code.lua file’s unlockAchivement function, there is this…
[lua]
local params = “auth_token=”…coronaCloudController.authToken
if progress ~= nil then
params = param…"&progress="…progress
end
[/lua]
When passing a progress for a partial achievement, I get an error and the app crashes.
Shouldn’t the code reference “param_ s _”, and not “param”?
[lua]
params = params…"&progress="…progress
[/lua]
Seems to work after making that change… my achievement handler is now being called.