Skip to content

Commit

Permalink
fix: fix android build error
Browse files Browse the repository at this point in the history
  • Loading branch information
whitedogg13 committed Nov 16, 2023
1 parent 72a2f42 commit d745431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/src/main/java/community/revteltech/nfc/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ static JSONObject ndefToJSON(Ndef ndef) {
json.put("canMakeReadOnly", JSONObject.NULL);
} catch (SecurityException e) {
Log.e(TAG, "Failed due to out of date tag", e);
json.put("canMakeReadOnly", JSONObject.NULL)
json.put("canMakeReadOnly", JSONObject.NULL);
}
} catch (JSONException e) {
Log.e(TAG, "Failed to convert ndef into json: " + ndef, e);
Expand Down

0 comments on commit d745431

Please sign in to comment.