Skip to content

Commit

Permalink
bad syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
aaustin committed Jun 25, 2016
1 parent dbcc07b commit 030aa58
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 (self.deepLinkUrl != null) {
} else if (this.deepLinkUrl != null) {
JSONObject message = new JSONObject();
try {
params.put("error", "Not a Branch link!");
params.put("url", self.deepLinkUrl);
self.deepLinkUrl = null;
params.put("url", this.deepLinkUrl);
this.deepLinkUrl = null;
} catch (JSONException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 030aa58

Please sign in to comment.