Skip to content

Commit

Permalink
JSON->STRING PARAMETER
Browse files Browse the repository at this point in the history
  • Loading branch information
WINDOWS-JC\John Castro committed Jun 20, 2017
1 parent de4cd0d commit 6019f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/FirebasePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public boolean execute(String action, JSONArray args, CallbackContext callbackCo
this.setConfigSettings(callbackContext, args.getJSONObject(0));
return true;
}else if (action.equals("getVerificationID")) {
this.getVerificationID(callbackContext, args.getJSONObject(0));
this.getVerificationID(callbackContext, args.getString(0));
return true;
} else if (action.equals("setDefaults")) {
if (args.length() > 1) this.setDefaults(callbackContext, args.getJSONObject(0), args.getString(1));
Expand Down

0 comments on commit 6019f3f

Please sign in to comment.