aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Backend/Helpers/TransitKindClassifier.cs
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-04-04 17:51:55 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2026-04-04 17:51:55 +0200
commit673818837bf2ba0a03bb9931dadfbc820e764462 (patch)
tree6a45990a8c51f38e0f4876318301367d089bb5f1 /src/Enmarcha.Backend/Helpers/TransitKindClassifier.cs
parent73a52022d549ee3b401cea938f40321702c52b2b (diff)
Remove FEVE
Diffstat (limited to 'src/Enmarcha.Backend/Helpers/TransitKindClassifier.cs')
-rw-r--r--src/Enmarcha.Backend/Helpers/TransitKindClassifier.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Enmarcha.Backend/Helpers/TransitKindClassifier.cs b/src/Enmarcha.Backend/Helpers/TransitKindClassifier.cs
index 5caf9fc..b1fad84 100644
--- a/src/Enmarcha.Backend/Helpers/TransitKindClassifier.cs
+++ b/src/Enmarcha.Backend/Helpers/TransitKindClassifier.cs
@@ -9,8 +9,8 @@ public class TransitKindClassifier
return feedId switch
{
"vitrasa" or "tussa" or "tranvias" or "shuttle" or "ourense" => TransitKind.Bus,
- "xunta" => TransitKind.Coach,
- "renfe" or "feve" => TransitKind.Train,
+ "xunta" => TransitKind.Coach,
+ "renfe" => TransitKind.Train,
_ => TransitKind.Unknown
};
}