Skip to content

Commit 56a9177

Browse files
authored
Merge pull request #655 from julianpetriv/main
Fixed FulfillmentChannel property null for UK marketplace
2 parents 316761b + 4cd0e47 commit 56a9177

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)