Skip to content

Commit

Permalink
fixed FulfillmentChannel property null for UK marketplace
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpetriv committed Sep 17, 2023
1 parent 9996dfb commit 4cd0e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/FikaAmazonAPI/ReportGeneration/ProductsReport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public static ProductsRow FromRow(TableRow rowData, string refNumber)
row.BidForFeaturedPlacement = rowData.GetString("bid-for-featured-placement");
row.AddDelete = rowData.GetString("add-delete");
row.PendingQuantity = rowData.GetInt32Nullable("pending-quantity");
row.FulfillmentChannel = rowData.GetString("fulfillment-channel");
row.FulfillmentChannel = rowData.GetString("fulfillment-channel") ?? rowData.GetString("fulfilment-channel");
row.OptionalPaymentTypeExclusion = rowData.GetString("optional-payment-type-exclusion");
row.Status = rowData.GetString("status");
row.MerchantShippingGroup = rowData.GetString("merchant-shipping-group");
Expand Down

0 comments on commit 4cd0e47

Please sign in to comment.