From e58454ef5d8ca8c125b7e01ea59fe2cc910c5f3f Mon Sep 17 00:00:00 2001 From: "DESKTOP-GENO133\\IvanPlex" Date: Sat, 13 Jan 2024 22:30:11 -0700 Subject: [PATCH] fix mapper. --- MapProfile/FuellyMappers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MapProfile/FuellyMappers.cs b/MapProfile/FuellyMappers.cs index 5c3d849..b90d948 100644 --- a/MapProfile/FuellyMappers.cs +++ b/MapProfile/FuellyMappers.cs @@ -9,7 +9,7 @@ namespace CarCareTracker.MapProfile { Map(m => m.Date).Name(["date", "fuelup_date"]); Map(m => m.Odometer).Name(["odometer"]); - Map(m => m.FuelConsumed).Name(["gallons", "liters", "litres", "consumption", "quantity", "fueleconomy"]); + Map(m => m.FuelConsumed).Name(["gallons", "liters", "litres", "consumption", "quantity", "fueleconomy", "fuelconsumed"]); Map(m => m.Cost).Name(["cost", "total cost", "totalcost", "total price"]); Map(m => m.Notes).Name("notes", "note"); Map(m => m.Price).Name(["price"]);