We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d7036 commit 2faabbbCopy full SHA for 2faabbb
src/android/io/branch/BranchSDK.java
@@ -6,6 +6,7 @@
6
7
import org.apache.cordova.CallbackContext;
8
import org.apache.cordova.CordovaPlugin;
9
+import org.apache.cordova.PluginResult;
10
11
import org.json.JSONArray;
12
import org.json.JSONException;
@@ -373,8 +374,8 @@ private void createBranchUniversalObject(JSONObject options) throws JSONExceptio
373
374
Iterator<?> keys = contentMetaData.keys();
375
376
while (keys.hasNext()) {
- Log.d(LCAT, contentMetaData.getString(key));
377
String key = (String) keys.next();
378
+ Log.d(LCAT, contentMetaData.getString(key));
379
String value = contentMetaData.optString(key);
380
this.branchObj.addContentMetadata(key, value);
381
}
0 commit comments