From faad2aedb8955d747cb9cc48897eb4d39116b81e Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Sun, 14 Apr 2019 09:52:00 +0000 Subject: [PATCH] Use === comparisons in XHR error handlers --- proxy.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/proxy.php b/proxy.php index f24d447..e764cb6 100644 --- a/proxy.php +++ b/proxy.php @@ -65,7 +65,7 @@ ], '/geoserviceDispatcher/services/vehicleinfo/vehicles' => [ 'lastUpdate' => 'ctype_digit', - 'positionType' => function($type) { return in_array($type, ['CORRECTED']); }, + 'positionType' => function($type) { return in_array($type, ['RAW', 'CORRECTED']); }, 'colorType' => function($type) { return in_array($type, ['ROUTE_BASED']); }, ], ]; -- Gitblit v1.9.1