diff --git a/EbayListingTool/Models/BulkImportRow.cs b/EbayListingTool/Models/BulkImportRow.cs index 4e1e079..71d28ef 100644 --- a/EbayListingTool/Models/BulkImportRow.cs +++ b/EbayListingTool/Models/BulkImportRow.cs @@ -124,7 +124,9 @@ public class BulkImportRow : INotifyPropertyChanged PhotoPaths = PhotoPaths.Split(',', StringSplitOptions.RemoveEmptyEntries) .Select(x => x.Trim()) .Where(x => !string.IsNullOrEmpty(x)) - .ToList() + .ToList(), + Postage = PostageOption.RoyalMailTracked48, + ShippingCost = 3.49m }; } diff --git a/EbayListingTool/Services/EbayListingService.cs b/EbayListingTool/Services/EbayListingService.cs index f982c42..c98894f 100644 --- a/EbayListingTool/Services/EbayListingService.cs +++ b/EbayListingTool/Services/EbayListingService.cs @@ -317,7 +317,9 @@ public class EbayListingService title = draft.Title, description = draft.Description, imageUrls = imageUrls.Count > 0 ? imageUrls : null, - aspects = (object?)null + aspects = draft.Aspects.Count > 0 + ? draft.Aspects.ToDictionary(kv => kv.Key, kv => new[] { kv.Value }) + : (object?)null } };