From 095fa8d57221c513092c971612bb584064d2916b Mon Sep 17 00:00:00 2001 From: Francisco Salas Date: Fri, 23 Feb 2024 10:39:45 +0100 Subject: [PATCH] aw5919: fix casing corn crop mix --- CarbonCalculation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CarbonCalculation.cs b/CarbonCalculation.cs index 89f5e03..810f83e 100644 --- a/CarbonCalculation.cs +++ b/CarbonCalculation.cs @@ -553,7 +553,7 @@ namespace FarmMapsAPI.Carbon newValue = 0.024 * item.Value + 0.228; valueList.Add(new ColumnValue(item.Key, newValue)); break; - case "Corn_Cob_mix": + case "Corn_cob_mix": newValue = 0.024 * item.Value + 0.228; valueList.Add(new ColumnValue(item.Key, newValue)); break;