From c38abaedc00f514396cc89338bf3e5b7e4e57017 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Tue, 29 Jan 2019 14:50:37 +0000
Subject: [PATCH] Allow RAW positionType in proxies
---
common.js | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/common.js b/common.js
index f4afeef..59b8a10 100644
--- a/common.js
+++ b/common.js
@@ -7,7 +7,7 @@
var script_version;
var script_version_xhr;
-var vehicles_info;
+var vehicles_info = {};
// Check for website updates
function checkVersion() {
@@ -105,10 +105,10 @@
}
function tramIdToVehicleId(tramId) {
- if(0 <= tramId && tramId <= 999) {
- var vehicleId = '0000' + (tramId + 736);
- vehicleId = vehicleId.substr(vehicleId.length - 4)
- return '635218529567218' + vehicleId;
+ for(var prop in vehicles_info) {
+ if(vehicles_info[prop]['num'].substr(2) == tramId) {
+ return prop;
+ }
}
}
--
Gitblit v1.9.1