Skip to content

Commit

Permalink
wrong parent
Browse files Browse the repository at this point in the history
  • Loading branch information
aaustin committed Jun 25, 2016
1 parent 030aa58 commit 845b1a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/android/io/branch/BranchSDK.java
Original file line number Diff line number Diff line change
Expand Up @@ -717,12 +717,12 @@ public void onInitFinished(JSONObject referringParams, BranchError error) {
this._callbackContext.success(referringParams);
}

} else if (this.deepLinkUrl != null) {
} else if (deepLinkUrl != null) {
JSONObject message = new JSONObject();
try {
params.put("error", "Not a Branch link!");
params.put("url", this.deepLinkUrl);
this.deepLinkUrl = null;
params.put("url", deepLinkUrl);
deepLinkUrl = null;
} catch (JSONException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 845b1a9

Please sign in to comment.