navigator.network.connection.getInfo returns wrong parameter to callback
------------------------------------------------------------------------
Key: CB-97
URL: https://issues.apache.org/jira/browse/CB-97
Project: Apache Callback
Issue Type: Bug
Components: BlackBerry
Reporter: Michael Brooks
The blackberry implementation returns a JSON object to the getInfo success
callback.
Android, for example, returns just a string.
Which one is the right one? I can't tell from the callback-test repo.
Here's an example of a problem I have currently on an Android and BlackBerry
callback project:
{code}
navigator.network.connection.getInfo(
function(type)
{
if(type == "none" || (typeof type.type != 'undefined' && type.type
== 'none'))
{
alert('no connection');
}
else
{
alert('connectioN!');
}
},
function()
{
alert('something bad happened');
});
{code}
So the getInfo callback, in Android case, compares to a string; BlackBerry has
to check it's an object and look at one of the object properties.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira