Skip to content

Commit

Permalink
ugh
Browse files Browse the repository at this point in the history
  • Loading branch information
aaustin committed Jun 25, 2016
1 parent 845b1a9 commit 3c305ad
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 @@ -720,8 +720,8 @@ public void onInitFinished(JSONObject referringParams, BranchError error) {
} else if (deepLinkUrl != null) {
JSONObject message = new JSONObject();
try {
params.put("error", "Not a Branch link!");
params.put("url", deepLinkUrl);
message.put("error", "Not a Branch link!");
message.put("url", deepLinkUrl);
deepLinkUrl = null;
} catch (JSONException e) {
e.printStackTrace();
Expand All @@ -731,7 +731,7 @@ public void onInitFinished(JSONObject referringParams, BranchError error) {
webView.sendJavascript(out);

if (this._callbackContext != null) {
this._callbackContext.error(errorMessage);
this._callbackContext.error(message);
}
}

Expand Down

0 comments on commit 3c305ad

Please sign in to comment.