mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-10 19:48:48 +00:00
EFA: Fix detection of barrier free leg for KVV.
This commit is contained in:
parent
05219556c8
commit
580f0569e8
1 changed files with 1 additions and 1 deletions
|
@ -2545,7 +2545,7 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider {
|
|||
final String text = XmlPullUtil.valueTag(pp, "infoTextListElem");
|
||||
if (text != null) {
|
||||
final String lcText = text.toLowerCase();
|
||||
if ("niederflurwagen soweit verfügbar".equals(lcText)) // KVV
|
||||
if (lcText.startsWith("niederflurwagen")) // KVV
|
||||
lowFloorVehicle = true;
|
||||
else if (lcText.contains("ruf") || lcText.contains("anmeld")) // Bedarfsverkehr
|
||||
message = text;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue