aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Backend/Services/Providers
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-03-19 18:56:34 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2026-03-19 18:56:34 +0100
commitbee85bf92aab84087798ffa9f3f16336acef2fce (patch)
tree4fc8e2907e6618940cd9bdeb3da1a81172aab459 /src/Enmarcha.Backend/Services/Providers
parentfed5d57b9e5d3df7c34bccb7a120bfa274b2039a (diff)
Basic backoffice for alert management
Diffstat (limited to 'src/Enmarcha.Backend/Services/Providers')
-rw-r--r--src/Enmarcha.Backend/Services/Providers/XuntaFareProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Enmarcha.Backend/Services/Providers/XuntaFareProvider.cs b/src/Enmarcha.Backend/Services/Providers/XuntaFareProvider.cs
index 3e62264..733be92 100644
--- a/src/Enmarcha.Backend/Services/Providers/XuntaFareProvider.cs
+++ b/src/Enmarcha.Backend/Services/Providers/XuntaFareProvider.cs
@@ -20,7 +20,7 @@ public class XuntaFareProvider
public XuntaFareProvider(IWebHostEnvironment env)
{
- var filePath = Path.Combine(env.ContentRootPath, "Data", "xunta_fares.csv");
+ var filePath = Path.Combine(env.ContentRootPath, "Content", "xunta_fares.csv");
using var reader = new StreamReader(filePath);
using var csv = new CsvReader(reader, CultureInfo.InvariantCulture);