Skip to content

Commit 2faabbb

Browse files
author
Renemari Padillo
committed
[FIX] Missing library and typo
1 parent e5d7036 commit 2faabbb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/android/io/branch/BranchSDK.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import org.apache.cordova.CallbackContext;
88
import org.apache.cordova.CordovaPlugin;
9+
import org.apache.cordova.PluginResult;
910

1011
import org.json.JSONArray;
1112
import org.json.JSONException;
@@ -373,8 +374,8 @@ private void createBranchUniversalObject(JSONObject options) throws JSONExceptio
373374
Iterator<?> keys = contentMetaData.keys();
374375

375376
while (keys.hasNext()) {
376-
Log.d(LCAT, contentMetaData.getString(key));
377377
String key = (String) keys.next();
378+
Log.d(LCAT, contentMetaData.getString(key));
378379
String value = contentMetaData.optString(key);
379380
this.branchObj.addContentMetadata(key, value);
380381
}

0 commit comments

Comments
 (0)