Skip to content

Commit

Permalink
fix: add missing param of method tagToJSON
Browse files Browse the repository at this point in the history
  • Loading branch information
dwettstein committed Jul 29, 2024
1 parent ad4192d commit a210a90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,10 @@ private void parseLaunchIntent(final CallbackContext callbackContext) {
if (ndef != null) {
callbackContext.success(buildNdefJSON(ndef, messages));
} else {
callbackContext.success(Util.tagToJSON(tag));
callbackContext.success(Util.tagToJSON(tag, messages));
}
} else if (action.equals(NfcAdapter.ACTION_TAG_DISCOVERED)) {
callbackContext.success(Util.tagToJSON(tag));
callbackContext.success(Util.tagToJSON(tag, messages));
} else {
if (data != null) {
callbackContext.success(data);
Expand Down

0 comments on commit a210a90

Please sign in to comment.