Skip to content

Error getting extra #6

Description

@aidanlangelaan

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions