From bc09a24fd2db2e93fbc8c22db3882bbc1e595dfe Mon Sep 17 00:00:00 2001 From: Matthias Wirth Date: Wed, 15 Dec 2021 18:11:27 +0100 Subject: [PATCH] fix /?airport= --- html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/script.js b/html/script.js index 1116689..885550b 100644 --- a/html/script.js +++ b/html/script.js @@ -4960,7 +4960,7 @@ function processURLParams(){ toggleMilitary(); if (usp.has('airport')) { - airport = usp.get('airport').trim().toUpperCase(); + onJumpInput = usp.get('airport').trim().toUpperCase(); onJump(); }