As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Apparently it s working anyway. disregard my comment, i cant find a way to delete it
Cheers
M
Mark
said
about 9 years ago
Since `JSON.parse` is in a `try-catch` block, it will indeed work. I guess you have enabled a Firefox setting to break on all exceptions, even if they are handled properly.
ipelia
var response = Kinvey.Persistence.Net.request(
request.method,
url,
request.data,
headers,
options
).then(function (response) {
// Parse the response.
try {
response = JSON.parse(response);
}
catch (e) { }
The JSON.parse is failing because in firefox, the response is apparently already an object and doesnt need to be parsed....
Are you aware of that? am i doing something wrong ?
I am using firefox 28 in windows 8....
Cheers