Skip to content

Commit 4cd0e47

Browse files
committed
fixed FulfillmentChannel property null for UK marketplace
1 parent 9996dfb commit 4cd0e47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/FikaAmazonAPI/ReportGeneration/ProductsReport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public static ProductsRow FromRow(TableRow rowData, string refNumber)
173173
row.BidForFeaturedPlacement = rowData.GetString("bid-for-featured-placement");
174174
row.AddDelete = rowData.GetString("add-delete");
175175
row.PendingQuantity = rowData.GetInt32Nullable("pending-quantity");
176-
row.FulfillmentChannel = rowData.GetString("fulfillment-channel");
176+
row.FulfillmentChannel = rowData.GetString("fulfillment-channel") ?? rowData.GetString("fulfilment-channel");
177177
row.OptionalPaymentTypeExclusion = rowData.GetString("optional-payment-type-exclusion");
178178
row.Status = rowData.GetString("status");
179179
row.MerchantShippingGroup = rowData.GetString("merchant-shipping-group");

0 commit comments

Comments
 (0)