Hi,
I've noticed an error while trying to get the extras. See line 108 in WebIntent.java for the following:
PluginResult res = new PluginResult(PluginResult.Status.OK, i.hasExtra(extraName));
Instead of returning the extra in the plugin result, a boolean is passed which indicates whether the extra exists or not. This should actually be:
PluginResult res = new PluginResult(PluginResult.Status.OK, i.getStringExtra(extraName));
Aidan
Hi,
I've noticed an error while trying to get the extras. See line 108 in WebIntent.java for the following:
PluginResult res = new PluginResult(PluginResult.Status.OK, i.hasExtra(extraName));Instead of returning the extra in the plugin result, a boolean is passed which indicates whether the extra exists or not. This should actually be:
PluginResult res = new PluginResult(PluginResult.Status.OK, i.getStringExtra(extraName));Aidan