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 7d03a6a commit 2db7f85Copy full SHA for 2db7f85
src/main/java/com/segment/analytics/android/integrations/firebase/FirebaseIntegration.java
@@ -224,6 +224,8 @@ && isNullOrEmpty(properties.currency())) {
224
225
private static ArrayList<Bundle> formatProducts(List<ValueMap> products) {
226
ArrayList<Bundle> mappedProducts = new ArrayList<>();
227
+ if (products == null) return mappedProducts;
228
+
229
for (ValueMap product : products) {
230
Bundle mappedProduct = new Bundle();
231
for (Map.Entry<String, Object> innerEntry : product.entrySet()) {
0 commit comments